-
Notifications
You must be signed in to change notification settings - Fork 116
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
SNOW-1819531: propagate referenced ctes to all root nodes #2670
Open
sfc-gh-aalam
wants to merge
31
commits into
main
Choose a base branch
from
aalam-SNOW-1819531-lqb-bug-fixes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+91
−19
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
d2c924b
debug
sfc-gh-aalam 7b7ad95
add print
sfc-gh-aalam ce30000
Merge branch 'main' into aalam-fix-proj-complexity
sfc-gh-aalam 09c9752
fix valid replacement and relaxed condition bug
sfc-gh-aalam 3ca612a
remove print
sfc-gh-aalam 8a48d9b
Merge branch 'main' into aalam-SNOW-1819531-lqb-bug-fixes
sfc-gh-aalam f7fe2eb
fix referenced_cte bug
sfc-gh-aalam 2fad709
code coverage
sfc-gh-aalam 850294d
Merge branch 'main' into aalam-SNOW-1819531-lqb-bug-fixes
sfc-gh-aalam 8f6ca76
update test
sfc-gh-aalam 16909dc
update test
sfc-gh-aalam 4db6421
fix type-hint and local-test
sfc-gh-aalam 78d52aa
remove unnecessary updates
sfc-gh-aalam ffcb577
remove unnecessary updates
sfc-gh-aalam eadcd8f
Merge branch 'main' into aalam-SNOW-1819531-lqb-bug-fixes
sfc-gh-aalam 28ed69b
fix _is_valid_for_replacement for resolve with_query_block
sfc-gh-aalam ca9be3a
Merge branch 'main' into aalam-SNOW-1819531-lqb-bug-fixes
sfc-gh-aalam bfb1412
fix root cause of error
sfc-gh-aalam d826c21
copy value from child
sfc-gh-aalam 2f1e1d7
address comments
sfc-gh-aalam 5daf97e
Deprecate propagate referenced ctes
sfc-gh-aalam 4528959
Deprecate propagate referenced ctes
sfc-gh-aalam 8f0a23b
move to_selectable to query generator
sfc-gh-aalam 9ff53d8
fix unit tests
sfc-gh-aalam fb83d0e
deprecate propagate referenced ctes
sfc-gh-aalam ee472b8
assert query starts correctly
sfc-gh-aalam 1623ca6
add more test
sfc-gh-aalam 340769e
Merge branch 'main' into aalam-SNOW-1844090-deprecate-propagate-refer…
sfc-gh-aalam 49072b9
Merge branch 'aalam-SNOW-1844090-deprecate-propagate-referenced-ctes'…
sfc-gh-aalam dd6b2f9
fix
sfc-gh-aalam 4e913f8
Merge branch 'main' into aalam-SNOW-1819531-lqb-bug-fixes
sfc-gh-aalam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the difference between "relaxed pipeline breaker" and "pipeline breaker"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pipeline breaker are all nodes like sort, pivot etc which are listed in the is_pipeline_breaker function.
relaxed pipeline breaker are those nodes which are not pipeline breakers but can be used to cut if no valid pipeline breaker is found. For now
SelectStatement
is the only relaxed pipeline breaker.