-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
feat: eliminate unnecessary projection. #5366
Conversation
c3f133f
to
6fee90c
Compare
6fee90c
to
903416a
Compare
c02de2f
to
6276d4c
Compare
6276d4c
to
7478c36
Compare
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 found using whitespace blind diff https://github.com/apache/arrow-datafusion/pull/5366/files?w=1 made it easier to see what was changed
I reviewed the code and plan changes and they all look very good to me. Thank you @jackwener
"| 3 | 3 | 3 | 3 |", | ||
"+----------------+-----------------+-----------------+---------------+", | ||
"+--------------+---------------+---------------+-------------+", | ||
"| COUNT(nanos) | COUNT(micros) | COUNT(millis) | COUNT(secs) |", |
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.
this looks like an improvement to me
Benchmark runs are scheduled for baseline = 645428f and contender = 8b92b9b. 8b92b9b is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Merging this PR seems to have broken two tests in
Likely because tests were run on the branch, there were no conflicts, then upon merge the merged output failed the tests? |
@avantgardnerio Yes, it's a classic Bors problem. It offen occur in Apache project due to cannot use merge queue. |
Which issue does this PR close?
Closes #.
Rationale for this change
What changes are included in this PR?
This PR add a rule to eliminate unnecessary projection.
Are these changes tested?
add unit test.
Are there any user-facing changes?
None