Also, is there a way, it would update the lineage ...
# getting-started
m
Also, is there a way, it would update the lineage graph if we make an insert to a table from another table's data. For example, if we run a query like this:
Copy code
INSERT INTO new_table (ID, Date, Name) 
SELECT id, date, name 
FROM old_table
c
Hi @many-salesclerk-29098 Postgres doent support lineage emission out of box. You will need to emit/ ingest related dataset aspects using emitter library or openapi
thank you 1