forked from apache/datafusion
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Recursive CTEs: Stage 2 - add support for sql -> logical plan generation #5
Draft
matthewgapp
wants to merge
21
commits into
matt/feat/recursive-ctes/config-flag
Choose a base branch
from
matt/feat/recursive-ctes/parser
base: matt/feat/recursive-ctes/config-flag
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.
Draft
Recursive CTEs: Stage 2 - add support for sql -> logical plan generation #5
matthewgapp
wants to merge
21
commits into
matt/feat/recursive-ctes/config-flag
from
matt/feat/recursive-ctes/parser
+952
−553
Conversation
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
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/parser
branch
from
January 12, 2024 02:59
f5b9af1
to
8e27b33
Compare
matthewgapp
changed the title
add config flag for recursive ctes
Recursive CTEs: Stage 1 - add support for sql -> logical plan generation
Jan 12, 2024
matthewgapp
changed the title
Recursive CTEs: Stage 1 - add support for sql -> logical plan generation
Recursive CTEs: Stage 2 - add support for sql -> logical plan generation
Jan 12, 2024
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/parser
branch
2 times, most recently
from
January 12, 2024 06:08
98f77ff
to
531d541
Compare
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/config-flag
branch
from
January 14, 2024 00:05
5c9fec5
to
91bc4a8
Compare
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/parser
branch
2 times, most recently
from
January 14, 2024 00:40
9615dde
to
460561c
Compare
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/config-flag
branch
from
January 15, 2024 18:32
fa99090
to
91bc4a8
Compare
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/parser
branch
from
January 15, 2024 21:57
a3b6463
to
22661af
Compare
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/config-flag
branch
from
January 16, 2024 17:31
91bc4a8
to
162e740
Compare
* impl cte as work table * move SharedState to continuance * impl WorkTableState wip: readying pr to implement only logical plan fix sql integration test wip: add sql test for logical plan wip: format test assertion
some docs more docs
matthewgapp
force-pushed
the
matt/feat/recursive-ctes/parser
branch
from
January 16, 2024 17:56
22661af
to
8d38c92
Compare
* Migrate references unit tests to sqllogictest * Remove unused import
…roundtrip test between expression and proto, (apache#8868) * add roundtrip test between expression and proto --------- Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
* add config flag for recursive ctes update docs from script update slt test for doc change * restore testing pin
* fix struct Signed-off-by: jayzhan211 <jayzhan211@gmail.com> * add test Signed-off-by: jayzhan211 <jayzhan211@gmail.com> * support functions Signed-off-by: jayzhan211 <jayzhan211@gmail.com> --------- Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Fix datafusion-cli print output * fmt * Do not print header if only empty batches, test for same
…expr` to use `transform_down` (apache#8890) * transform_down * add test
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR implements sql -> logical plan generation support for Recursive CTEs.
Todos
Which issue does this PR close?
Closes #.
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?