-
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
Move First Value UDAF and builtin first / last function to aggregate-functions
#9960
Merged
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
0eaf289
backup
jayzhan211 5338f61
move PhysicalExpr
jayzhan211 450ae4b
cleanup
jayzhan211 3624964
move physical sort
jayzhan211 835f147
cleanup dependencies
jayzhan211 c5d80c8
add readme
jayzhan211 7851de7
disable doc test
jayzhan211 f5aafb3
move column
jayzhan211 7bfc074
fmt
jayzhan211 675d2fe
move aggregatexp
jayzhan211 5220087
move other two utils
jayzhan211 113a000
license
jayzhan211 fea87e3
switch to ignore
jayzhan211 06d87bc
move reverse order
jayzhan211 26e5782
rename to common
jayzhan211 26f852c
cleanup
jayzhan211 65bf4a1
Merge branch 'physical-expr-core' into move-agg-crate-2
jayzhan211 2bc58c1
backup
jayzhan211 ae9db96
Merge branch 'physical-expr-core' into move-agg-crate-2
jayzhan211 30d5576
move acc to first value
jayzhan211 672edc7
move builtin expr too
jayzhan211 109b790
use macro
jayzhan211 87d589f
fmt
jayzhan211 398e4e2
fix doc
jayzhan211 04c7f5e
add todo
jayzhan211 01a1ddf
rm comments
jayzhan211 4871414
rm unused
jayzhan211 1ef212b
rm unused code
jayzhan211 b6d53a5
change to private
jayzhan211 9aa15a2
fix lock
jayzhan211 e90464b
cleanup
jayzhan211 ece925f
cleanup
jayzhan211 89ccc89
support roundtrip
jayzhan211 41a830a
remmove old format state
jayzhan211 d235d2a
move aggregate related things to aggr crate
jayzhan211 51cd272
move back to common
jayzhan211 38b2ce7
taplo
jayzhan211 9c7767c
rm comment
jayzhan211 ea4adde
cleanup
jayzhan211 39c5d15
lock
jayzhan211 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
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.
While I agree that these two structures are aggregate specific, I still think they should be in
datafusion-physical-expr-common
because that would allow people to use DataFusion and create their own aggregate functions without having to take DataFusion's built in aggregate functionsI see real value in keeping the APIs required to use datafusion separate from the actual implementations
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 agree that we should avoid the user pulling out unnecessary things for them. I thought they would need builtin functions, but they probably don't. I will keep them in common