-
Notifications
You must be signed in to change notification settings - Fork 873
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
Remove Type from NativeIndex #4146
Conversation
32bb94f
to
d0947c2
Compare
@@ -118,11 +116,10 @@ pub struct NativeIndex<T: ParquetValueType> { | |||
} | |||
|
|||
impl<T: ParquetValueType> NativeIndex<T> { | |||
pub const PHYSICAL_TYPE: Type = T::PHYSICAL_TYPE; |
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.
This is necessary because ParquetValueType
is technically an experimental API
parquet/src/file/page_index/index.rs
Outdated
@@ -106,8 +106,6 @@ impl Index { | |||
/// Stores the [`PageIndex`] for each page of a column with [`Type`] |
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 update the doc for the [Type]
?
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.
What did you have in mind?
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 meant do we need to remove it?
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.
Removed
Which issue does this PR close?
Closes #.
Rationale for this change
Follow up to #3578 that switches
FIXED_LEN_BYTE_ARRAY
to useFixedLenByteArray
which in turn allows removingType
fromNativeIndex
What changes are included in this PR?
Are there any user-facing changes?