Building column level lineage #473
Unanswered
igormasternoy
asked this question in
Q&A
Replies: 1 comment
-
Yes, SELECT only SQLs won't present column lineage for current implementation. Appending an INSERT INTO FOO to the end does work, however it's relying on a buggy feature that we don't validate your SQL for default dialect. The more reasonable thing to do is prepend Personally if I'm doing this, I would prepend Hope this helps. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm having a following use-case, where I'd be glad to use this amazing tool.
We have some queries in Tableau, which are taking data from Vertica. Queries usually are just DMLs (some with subqueries and resulting select) meaning there is no insert into statements. We would like to build a column level lineage from Vertica tables to this Query. To understand what are actual columns are being used in Tableau.
As far as I understood to achieve the column level lineage I just need to add an insert into foo in the end of the DML query.
Beta Was this translation helpful? Give feedback.
All reactions