-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the case of temp table, the redshift Lineage cannot be obtained accurately. #4895
Comments
datahub/metadata-ingestion/src/datahub/ingestion/source/sql/redshift.py Lines 798 to 853 in 075d19e
The possible reason is that SVV_TABLE_INFO Do not permanently save temporary table information,Only including temporary tables created by a user for the current session. I can't find all the places where the temporary tables are redshift stored, and I may need to parse the consanguinity through ddl. |
Currently, we drop tables from a lineage that does not exist anymore. |
This was fixed by #9704 |
Describe the bug
In the case of temp table, the redshift Lineage cannot be obtained accurately.
To Reproduce
tableBB Lineage,not exist tmp_table、tableAA
Expected behavior
tableBB Lineage,exist tmp_table、tableAA
The text was updated successfully, but these errors were encountered: