-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
refactor: split group_column.rs into multiple submodules #13378
Conversation
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.
👍
@Chen-Yuan-Lai You can run |
ByteGroupValueBuilder, ByteViewGroupValueBuilder, GroupColumn, | ||
PrimitiveGroupValueBuilder, | ||
}; | ||
use crate::aggregates::group_values::multi_column::byte::ByteGroupValueBuilder; |
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.
We prefer to merge them together
@jayzhan211 thanks for your review! but the other PR (#13352) with the same issue has already been merged. @Rachelint you may need to reorganize codes again based on his change? |
Yes. |
#13392 -- I think has the follow on improvements |
Which issue does this PR close?
Closes #13262.
Rationale for this change
What changes are included in this PR?
/group_column.rs
into/multi_column/primitive.rs
,/multi_column/byte.rs
, and/multi_column/byte_view.rs
/multi_column/mod.rs
and place shared trait and function in this fileAre these changes tested?
Are there any user-facing changes?