Skip to content

Commit bd4691f

Browse files
committed
Fix some tests
1 parent 547110d commit bd4691f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/iceberg/src/expr/visitors/manifest_evaluator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ impl BoundPredicateVisitor for ManifestFilterVisitor<'_> {
258258
lower_bound_bytes,
259259
*reference.field().field_type.clone(),
260260
);
261-
if datum > &lower_bound {
261+
if &lower_bound > datum {
262262
return ROWS_CANNOT_MATCH;
263263
}
264264
}
@@ -268,7 +268,7 @@ impl BoundPredicateVisitor for ManifestFilterVisitor<'_> {
268268
upper_bound_bytes,
269269
*reference.field().field_type.clone(),
270270
);
271-
if datum < &upper_bound {
271+
if &upper_bound < datum {
272272
return ROWS_CANNOT_MATCH;
273273
}
274274
}

0 commit comments

Comments
 (0)