Vinay Narayana

Results 2 comments of Vinay Narayana

Hi, adding postgres db view lineage failure scenario. Query: ```sql CREATE OR REPLACE VIEW public.vw_film_actor_info AS SELECT CONCAT(fa.film_id, '-A:', fa.actor_id) AS film_actor_key, CONCAT(a.first_name, ' ', a.last_name) AS full_name, f.title, f.release_year,...

In python3.x versions urlretrieve function moved to urllib.request. Just change code as mentioned: from `import urllib` to `import urllib.request as urllib`