-
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
Make row its crate to make it accessible from physical-expr #2283
Conversation
[package] | ||
name = "datafusion-row" | ||
description = "Row backed by raw bytes for DataFusion query engine" | ||
version = "7.0.0" |
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.
Do we really want to start with version 7.0.0 for this crate?
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.
or 0.1.0 ?
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 following the model of the other datafusion sub crates (which are all versioned the same -- 7.0.0).
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.
ok, that makes sense
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 like it -- thanks @yjshen
[package] | ||
name = "datafusion-row" | ||
description = "Row backed by raw bytes for DataFusion query engine" | ||
version = "7.0.0" |
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 following the model of the other datafusion sub crates (which are all versioned the same -- 7.0.0).
Which issue does this PR close?
Part of #2188.
Based on #2261.
Rationale for this change
To use row in physical aggregation expressions.
What changes are included in this PR?
Move row out of datafusion core to its own crate.
Are there any user-facing changes?
Yes, but the row itself is behind a feature gate and still under development.