Skip to content

Commit d0d9f6b

Browse files
committed
less
Signed-off-by: Robert Kruszewski <github@robertk.io>
1 parent 2c21ec4 commit d0d9f6b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

vortex-file/src/file.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//! The `VortexFile` provides methods for accessing file metadata, creating segment sources for reading
77
//! data from the file, and initiating scans to read the file's contents into memory as Vortex arrays.
88
9+
use std::iter::once;
910
use std::ops::Range;
1011
use std::sync::Arc;
1112

@@ -141,7 +142,7 @@ impl VortexFile {
141142
])
142143
})
143144
})
144-
.chain(std::iter::once(FieldPath::from_name(ROW_COUNT_FIELD))),
145+
.chain(once(FieldPath::from_name(ROW_COUNT_FIELD))),
145146
);
146147

147148
let Some((predicate, required_stats)) = checked_pruning_expr(filter, &set) else {

0 commit comments

Comments
 (0)