-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00d9a76
commit c804c2e
Showing
27 changed files
with
181 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...napshots/test_column_pruner.py/SqlQueryPlan/test_prune_distinct_select__after_pruning.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- test0 | ||
SELECT | ||
a.booking_value | ||
FROM ( | ||
-- test1 | ||
SELECT DISTINCT | ||
a.booking_value | ||
, a.bookings | ||
FROM demo.fct_bookings a | ||
) b |
10 changes: 10 additions & 0 deletions
10
...apshots/test_column_pruner.py/SqlQueryPlan/test_prune_distinct_select__before_pruning.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- test0 | ||
SELECT | ||
a.booking_value | ||
FROM ( | ||
-- test1 | ||
SELECT DISTINCT | ||
a.booking_value | ||
, a.bookings | ||
FROM demo.fct_bookings a | ||
) b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.