-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat: Remove compact row since it's no longer used #6021
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ | |
|
|
||
| //! [`RowAccessor`] provides a Read/Write/Modify access for row with all fixed-sized fields: | ||
|
|
||
| use crate::layout::{RowLayout, RowType}; | ||
| use crate::layout::RowLayout; | ||
| use crate::validity::NullBitsFormatter; | ||
| use crate::{fn_get_idx, fn_get_idx_opt, fn_set_idx}; | ||
| use arrow::datatypes::{DataType, Schema}; | ||
|
|
@@ -116,9 +116,9 @@ macro_rules! fn_get_idx_scalar { | |
|
|
||
| impl<'a> RowAccessor<'a> { | ||
| /// new | ||
| pub fn new(schema: &Schema, row_type: RowType) -> Self { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the PR. This is always great to cut out the unused code. For public functions though it can be a user interface change for downstream projects btw?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for bringing this out! I've created an issue, added an API change label, and edited the PR descriptions accordingly. |
||
| pub fn new(schema: &Schema) -> Self { | ||
| Self { | ||
| layout: Arc::new(RowLayout::new(schema, row_type)), | ||
| layout: Arc::new(RowLayout::new(schema)), | ||
| data: &mut [], | ||
| base_offset: 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.
👍