Lineage

Common Table Expression (CTE)

Wrap final lineage in CTE

To include the final phase in the lineage graph, ensure that your last SQL query is encapsulated within a CTE; otherwise, it will not appear on the graph.

Without final CTE

Wrapped final statement

e.g., select * from final;

Last updated