some sql with `declare` does not generate any references (although it should)
lukas-at-harren opened this issue · 1 comments
lukas-at-harren commented
Given a query 'child_table.sql`:
declare foo_var int64;
create or replace table dataset.child_table as
select * from dataset.parent_table
Running alphadag
against it, produces unexpected results, not recognising dataset.parent_table
as the precursor to dataset.child_table
.
$ alphadag --with_tables child_table.sql
Reading paths passed as a command line arguments...
Only files that end with .sql or .bq are analyzed.
Reading "foo.sql"
digraph G {
0 [label="child_table.sql", shape="", type=query];
1 [label="dataset.child_table", shape=box, type=table];
0->1 ;
}
EXTERNAL REQUIRED TABLES:
Expected results:
digraph G {
0 [label="child_table.sql", shape="", type=query];
1 [label="dataset.child_table", shape=box, type=table];
2 [label="dataset.parent_table", shape=box, type=table];
0->1 ;
2->1 ;
}
EXTERNAL REQUIRED TABLES:
dataset.parent_table
I expected for dataset.parent_table
to be the precursor to the table created in child_table.sql
.
Matts966 commented
Thank you for your contribution :)
This is caused by the line below ignoring error status
alphasql/alphasql/identifier_resolver.cc
Line 82 in 8e382f8
declare
is not supported now and should be supported in #78.