Skip to content

Commit df76d32

Browse files
cleanup: layout reader formatting (#3421)
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 306e981 commit df76d32

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

vortex-expr/src/transform/partition.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ static SPLITTER_RANDOM_STATE: LazyLock<DefaultHashBuilder> =
1818
/// Partition an expression over the fields of the scope.
1919
///
2020
/// This returns a partitioned expression that can be push-down over each field of the scope.
21-
/// The results of each partition can then be recombined to reproduce the result of the original
22-
/// expression.
21+
/// The results of each partition evaluation can then be recombined to reproduce the result of
22+
/// the original expression.
2323
///
2424
/// ## Note
2525
///

vortex-layout/src/layouts/chunked/reader.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ impl LayoutReader for ChunkedReader {
166166

167167
fn filter_evaluation(
168168
&self,
169-
170169
row_range: &Range<u64>,
171170
expr: &ExprRef,
172171
) -> VortexResult<Box<dyn MaskEvaluation>> {

vortex-layout/src/layouts/struct_/reader.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ impl LayoutReader for StructReader {
157157

158158
fn pruning_evaluation(
159159
&self,
160-
161160
row_range: &Range<u64>,
162161
expr: &ExprRef,
163162
) -> VortexResult<Box<dyn PruningEvaluation>> {
@@ -177,7 +176,6 @@ impl LayoutReader for StructReader {
177176

178177
fn filter_evaluation(
179178
&self,
180-
181179
row_range: &Range<u64>,
182180
expr: &ExprRef,
183181
) -> VortexResult<Box<dyn MaskEvaluation>> {

0 commit comments

Comments
 (0)