We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c21ec4 commit d0d9f6bCopy full SHA for d0d9f6b
1 file changed
vortex-file/src/file.rs
@@ -6,6 +6,7 @@
6
//! The `VortexFile` provides methods for accessing file metadata, creating segment sources for reading
7
//! data from the file, and initiating scans to read the file's contents into memory as Vortex arrays.
8
9
+use std::iter::once;
10
use std::ops::Range;
11
use std::sync::Arc;
12
@@ -141,7 +142,7 @@ impl VortexFile {
141
142
])
143
})
144
- .chain(std::iter::once(FieldPath::from_name(ROW_COUNT_FIELD))),
145
+ .chain(once(FieldPath::from_name(ROW_COUNT_FIELD))),
146
);
147
148
let Some((predicate, required_stats)) = checked_pruning_expr(filter, &set) else {
0 commit comments