-
Notifications
You must be signed in to change notification settings - Fork 240
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
chore: upgrade datafusion and arrow-rs #1390
Conversation
@@ -1528,22 +1529,22 @@ mod tests { | |||
|
|||
let arr = read_array_w_params(&reader, &schema.fields[1], ReadBatchParams::RangeFull).await; | |||
assert_eq!(100, arr.len()); | |||
assert_eq!(100, arr.null_count()); | |||
assert_eq!(arr.data_type(), &DataType::Null); |
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.
null_count()
no longer returns the logical null count, just the number of "physical nulls". apache/arrow-rs#4691
arrow-schema = "43.0" | ||
arrow-select = "43.0" | ||
arrow = { version = "46.0.0", optional = false } | ||
arrow-arith = "46.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.
IIRC, we are wait for arrow 47 for a few fixes? And datafusion 32 is being voted at the moment, right?
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.
Why wait? Is something broken in 46?
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 need to bump datafusion
again in 3-5 days to include fixes?
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.
🤷 yes, we need to upgrade for the next version. IMO we should upgrade on every datafusion release.
No description provided.