We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SQL
INSERT INTO tab1 (col1, col2) ((SELECT * FROM tab2 UNION SELECT * FROM tab3)) INSERT INTO tab1 (col1, col2) (((SELECT * FROM tab2 UNION SELECT * FROM tab3))) CREATE VIEW my_view (random1,random2) AS ((SELECT col1,col2 FROM tbl)) CREATE VIEW my_view (random1,random2) AS (((SELECT col1,col2 FROM tbl)))
To Reproduce
Note here we refer to SQL provided in prior step as stored in a file named test.sql
test.sql
from sqllineage.runner import LineageRunner with open("test.sql") as f: sql = f.read() lr = LineageRunner(sql, dialect="redshift") lr.print_table_lineage()
Actual behavior
Statements(#): 1 Source Tables: Target Tables: <default>.tab1
Expected behavior
Statements(#): 1 Source Tables: <default>.tab2 <default>.tab3 Target Tables: <default>.tab1
Python version (available via python --version)
python --version
SQLLineage version (available via sqllineage --version):
sqllineage --version
Additional context
The text was updated successfully, but these errors were encountered:
fix: issue (reata#564)
23c8340
9060655
Successfully merging a pull request may close this issue.
SQL
To Reproduce
Note here we refer to SQL provided in prior step as stored in a file named
test.sql
Actual behavior
Expected behavior
Python version (available via
python --version
)SQLLineage version (available via
sqllineage --version
):Additional context
The text was updated successfully, but these errors were encountered: