-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Support qualified columns in queries #55
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
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
8ecc215
support qualified columns in queries
houqp 696f8e0
handle coalesced hash join partition in HashJoinStream
houqp cdc5fb7
implement Into<Column> for &str
houqp 723ee5d
add todo for ARROW-10971
houqp 2ae97c4
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 9cf494f
fix cross join handling in production push down optimizer
houqp fff2e1d
maintain field order during plan optimization using projections
houqp 202b87e
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp eaf1edc
change TableScane name from Option<String> to String
houqp 6c674cb
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 7f253c7
WIP: fix ballista
houqp 5c413dd
separate logical and physical expressions in proto, fix ballista build
houqp 841159f
fix join schema handling in production push down optimizer
houqp 9ab4711
tpch 7 & 8 are now passing!
houqp babb252
fix roundtrip_join test
houqp d18065b
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp bbde69a
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 6aaa148
fix clippy warnings
houqp 040d28c
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 2ef668d
fix sql planner test error checking with matches
houqp 9513c19
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 7b70f04
address FIXMEs
houqp fd3005f
honor datafusion field name semantic
houqp 0782ee2
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp a9ba4c6
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 071f86b
add more comment
houqp 80a5168
enable more queries in benchmark/run.sh
houqp 713fbe1
use unzip to avoid unnecessary iterators
houqp e4677b9
reduce diff by discarding style related changes
houqp 6f6ecdf
simplify hash_join tests
houqp 1643617
reduce diff for easier revuew
houqp 660af1e
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp cad0d5e
fix unnecessary reference clippy error
houqp 7b72c9c
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 593785a
incorporate code review feedback
houqp 071d8ac
Merge remote-tracking branch 'upstream/master' into HEAD
houqp d26b54c
fix window schema handling in projection pushdown optimizer
houqp 9c1e94d
Merge remote-tracking branch 'upstream/master' into qp_qualified
houqp 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 hidden or 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.
Physical expressions are now serialized and deserialized without involving logical expressions. It is needed because logical columns and physical columns are represented differently, one with relation qualifier and the other one with column index. This should also speed up the deserialization for physical plane because we won't need to run physical expressions through physical planner anymore.
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.
I think this is a very common tactic in other systems and so 👍
My only regret (?) is that I have spent non trivial amounts of time tracking down bugs when the offsets get messed up -- lol! But I don't have any better suggestions
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.
Yeah, i have the same feeling when it comes to debugging index offset issues :(