We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f3f362 commit 2df05feCopy full SHA for 2df05fe
vortex-layout/src/layouts/row_idx/mod.rs
@@ -131,12 +131,7 @@ impl LayoutReader for RowIdxLayoutReader {
131
row_offset: u64,
132
splits: &mut BTreeSet<u64>,
133
) -> VortexResult<()> {
134
- // Since RowIdx isn't a field, we only need to register splits for the child layout
135
- // if there are any fields in the mask at all.
136
- if !field_mask.is_empty() {
137
- self.child.register_splits(field_mask, row_offset, splits)?;
138
- }
139
- Ok(())
+ self.child.register_splits(field_mask, row_offset, splits)
140
}
141
142
fn pruning_evaluation(
0 commit comments