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 5c46abe commit 7568dedCopy full SHA for 7568ded
datafusion/datasource-parquet/src/row_filter.rs
@@ -269,7 +269,9 @@ fn leaf_indices_for_roots(
269
let root_set: BTreeSet<_> = root_indices.iter().copied().collect();
270
271
(0..schema_descr.num_columns())
272
- .filter(|leaf_idx| root_set.contains(&schema_descr.get_column_root_idx(*leaf_idx)))
+ .filter(|leaf_idx| {
273
+ root_set.contains(&schema_descr.get_column_root_idx(*leaf_idx))
274
+ })
275
.collect()
276
}
277
0 commit comments