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 547110d commit bd4691fCopy full SHA for bd4691f
crates/iceberg/src/expr/visitors/manifest_evaluator.rs
@@ -258,7 +258,7 @@ impl BoundPredicateVisitor for ManifestFilterVisitor<'_> {
258
lower_bound_bytes,
259
*reference.field().field_type.clone(),
260
);
261
- if datum > &lower_bound {
+ if &lower_bound > datum {
262
return ROWS_CANNOT_MATCH;
263
}
264
@@ -268,7 +268,7 @@ impl BoundPredicateVisitor for ManifestFilterVisitor<'_> {
268
upper_bound_bytes,
269
270
271
- if datum < &upper_bound {
+ if &upper_bound < datum {
272
273
274
0 commit comments