-
Notifications
You must be signed in to change notification settings - Fork 786
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: update arrow-format #5502
Conversation
e33311b
to
f628c3e
Compare
@@ -32,8 +32,7 @@ use arrow_ipc::writer; | |||
use arrow_schema::{DataType, Field, Fields, Schema, TimeUnit}; | |||
|
|||
use crate::basic::{ | |||
ConvertedType, LogicalType, Repetition, TimeUnit as ParquetTimeUnit, |
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.
The changes in this file seem unrelated to this PR?
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.
cargo formatted...
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.
There are also code changes mixed in though...
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.
fixed
@@ -720,6 +726,33 @@ impl<'a> RecordBatch<'a> { | |||
) | |||
} | |||
} | |||
/// Some types such as Utf8View are represented using a variable number of buffers. | |||
/// For each such Field in the pre-ordered flattened logical schema, there will be | |||
/// an entry in variadicBufferCounts to indicate the number of number of variadic |
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.
the number of number of
Redundant words.
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.
Should modify the fbs file https://github.com/apache/arrow-rs/blob/master/format/Message.fbs#L105
Which issue does this PR close?
Part of #5506 .
Rationale for this change
Update arrow-format to new version.
What changes are included in this PR?
Update arrow-format to new version, include
ListView
,LargeListView
,BinaryView
andStringView
.Are there any user-facing changes?
No