-
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
Minor: Move group accumulator for aggregate function to physical-expr-common, and add ahash physical-expr-common #10574
Conversation
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
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.
Looks good to me -- thanks @jayzhan211
@@ -59,6 +59,9 @@ version = "38.0.0" | |||
# for the inherited dependency but cannot do the reverse (override from true to false). | |||
# | |||
# See for more detaiils: https://github.com/rust-lang/cargo/issues/11329 | |||
ahash = { version = "0.8", default-features = false, features = [ |
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.
👍
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
pub mod accumulate; |
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.
Perhaps we could add a note that this module is for implementing GroupsAccumulator
pub mod accumulate; | |
//! Utilities for implementing [`GroupsAccumulator`] | |
pub mod accumulate; |
mod adapter; | ||
pub use accumulate::NullState; | ||
|
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.
👍 for backwards compatibility
Maybe we can leave a comment explaining it is for backwards compatibility
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
Thanks @alamb |
🚀 |
…-common, and add ahash physical-expr-common (apache#10574) * ahash workspace Signed-off-by: jayzhan211 <[email protected]> * move other utils Signed-off-by: jayzhan211 <[email protected]> * move NullState Signed-off-by: jayzhan211 <[email protected]> * move PrimitiveGroupsAccumulator Signed-off-by: jayzhan211 <[email protected]> * move boolop Signed-off-by: jayzhan211 <[email protected]> * move deciamlavg Signed-off-by: jayzhan211 <[email protected]> * add comment Signed-off-by: jayzhan211 <[email protected]> * fix doc Signed-off-by: jayzhan211 <[email protected]> --------- Signed-off-by: jayzhan211 <[email protected]>
Which issue does this PR close?
Closes #.
Rationale for this change
Count
tofunctions-aggregate
, update MSRV to rust 1.75 #10484What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?