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
Describe the bug
SQL Paste the SQL text here. For example:
insert into public.tgt_tbl1 ( id ) with cte1 as ( select name from public.src_tbl1 ) select name from cte1 ;
To Reproduce Note here we refer to SQL provided in prior step as stored in a file named test.sql
test.sql
with open(sql_file, 'r') as f: sql = f.read() lr = LineageRunner(sql, dialect='redshift') lr.print_column_lineage()
public.tgt_tbl1.name <- cte1.name <- public.src_tbl1.name
Expected behavior
public.tgt_tbl1.id <- cte1.name <- public.src_tbl1.name
Python version (available via python --version)
python --version
SQLLineage version (available via sqllineage --version):
sqllineage --version
The text was updated successfully, but these errors were encountered:
Bug confirmed. Thanks for reporting.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
SQL
Paste the SQL text here. For example:
To Reproduce
Note here we refer to SQL provided in prior step as stored in a file named
test.sql
Expected behavior
Python version (available via
python --version
)SQLLineage version (available via
sqllineage --version
):The text was updated successfully, but these errors were encountered: