Skip to content
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

Updated Snapshot 🎉 #97

Open
wants to merge 1 commit into
base: fix/recursive-ddl
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions samples/recursive_ddl/alphacheck_stderr.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ERROR: INVALID_ARGUMENT: Table not found: t1 [at samples/recursive_ddl/recursive_create_t1.sql:5:3]
6 changes: 6 additions & 0 deletions samples/recursive_ddl/alphacheck_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Analyzing "samples/recursive_ddl/recursive_create_t1.sql"
tables:
dataset.main
tablename1
tablename2
tvfs:
Empty file.
3 changes: 3 additions & 0 deletions samples/recursive_ddl/alphadag_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Reading paths passed as a command line arguments...
Only files that end with .sql or .bq are analyzed.
Reading "samples/recursive_ddl/recursive_create_t1.sql"
3 changes: 3 additions & 0 deletions samples/recursive_ddl/dag.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
digraph G {
0 [label="samples/recursive_ddl/recursive_create_t1.sql", shape="", type=query];
}
Binary file added samples/recursive_ddl/dag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ERROR: INVALID_ARGUMENT: Table not found: t1 [at samples/recursive_ddl/recursive_create_t1.sql:5:3]
6 changes: 6 additions & 0 deletions samples/recursive_ddl/side_effect_first/alphacheck_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Analyzing "samples/recursive_ddl/recursive_create_t1.sql"
tables:
dataset.main
tablename1
tablename2
tvfs:
Empty file.
3 changes: 3 additions & 0 deletions samples/recursive_ddl/side_effect_first/alphadag_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Reading paths passed as a command line arguments...
Only files that end with .sql or .bq are analyzed.
Reading "samples/recursive_ddl/recursive_create_t1.sql"
3 changes: 3 additions & 0 deletions samples/recursive_ddl/side_effect_first/dag.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
digraph G {
0 [label="samples/recursive_ddl/recursive_create_t1.sql", shape="", type=query];
}
Binary file added samples/recursive_ddl/side_effect_first/dag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ERROR: INVALID_ARGUMENT: Table not found: t1 [at samples/recursive_ddl/recursive_create_t1.sql:5:3]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Analyzing "samples/recursive_ddl/recursive_create_t1.sql"
tables:
dataset.main
tablename1
tablename2
tvfs:
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Reading paths passed as a command line arguments...
Only files that end with .sql or .bq are analyzed.
Reading "samples/recursive_ddl/recursive_create_t1.sql"
5 changes: 5 additions & 0 deletions samples/recursive_ddl/side_effect_first_with_tables/dag.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
digraph G {
0 [label="samples/recursive_ddl/recursive_create_t1.sql", shape="", type=query];
1 [label=t1, shape=box, type=table];
0->1 ;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
1 change: 1 addition & 0 deletions samples/recursive_ddl/with_all/alphacheck_stderr.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ERROR: INVALID_ARGUMENT: Table not found: t1 [at samples/recursive_ddl/recursive_create_t1.sql:5:3]
6 changes: 6 additions & 0 deletions samples/recursive_ddl/with_all/alphacheck_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Analyzing "samples/recursive_ddl/recursive_create_t1.sql"
tables:
dataset.main
tablename1
tablename2
tvfs:
Empty file.
3 changes: 3 additions & 0 deletions samples/recursive_ddl/with_all/alphadag_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Reading paths passed as a command line arguments...
Only files that end with .sql or .bq are analyzed.
Reading "samples/recursive_ddl/recursive_create_t1.sql"
5 changes: 5 additions & 0 deletions samples/recursive_ddl/with_all/dag.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
digraph G {
0 [label="samples/recursive_ddl/recursive_create_t1.sql", shape="", type=query];
1 [label=t1, shape=box, type=table];
0->1 ;
}
Binary file added samples/recursive_ddl/with_all/dag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
1 change: 1 addition & 0 deletions samples/recursive_ddl/with_functions/alphacheck_stderr.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ERROR: INVALID_ARGUMENT: Table not found: t1 [at samples/recursive_ddl/recursive_create_t1.sql:5:3]
6 changes: 6 additions & 0 deletions samples/recursive_ddl/with_functions/alphacheck_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Analyzing "samples/recursive_ddl/recursive_create_t1.sql"
tables:
dataset.main
tablename1
tablename2
tvfs:
Empty file.
3 changes: 3 additions & 0 deletions samples/recursive_ddl/with_functions/alphadag_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Reading paths passed as a command line arguments...
Only files that end with .sql or .bq are analyzed.
Reading "samples/recursive_ddl/recursive_create_t1.sql"
3 changes: 3 additions & 0 deletions samples/recursive_ddl/with_functions/dag.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
digraph G {
0 [label="samples/recursive_ddl/recursive_create_t1.sql", shape="", type=query];
}
Binary file added samples/recursive_ddl/with_functions/dag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
1 change: 1 addition & 0 deletions samples/recursive_ddl/with_tables/alphacheck_stderr.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ERROR: INVALID_ARGUMENT: Table not found: t1 [at samples/recursive_ddl/recursive_create_t1.sql:5:3]
6 changes: 6 additions & 0 deletions samples/recursive_ddl/with_tables/alphacheck_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Analyzing "samples/recursive_ddl/recursive_create_t1.sql"
tables:
dataset.main
tablename1
tablename2
tvfs:
Empty file.
3 changes: 3 additions & 0 deletions samples/recursive_ddl/with_tables/alphadag_stdout.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Reading paths passed as a command line arguments...
Only files that end with .sql or .bq are analyzed.
Reading "samples/recursive_ddl/recursive_create_t1.sql"
5 changes: 5 additions & 0 deletions samples/recursive_ddl/with_tables/dag.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
digraph G {
0 [label="samples/recursive_ddl/recursive_create_t1.sql", shape="", type=query];
1 [label=t1, shape=box, type=table];
0->1 ;
}
Binary file added samples/recursive_ddl/with_tables/dag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.