From d4796066f3d002f07b780514b520fa2a169cc638 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Sat, 10 Jan 2026 12:41:02 +0800 Subject: [PATCH] fix ut assertion Signed-off-by: Ruihang Xia --- src/partition/src/expr.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/partition/src/expr.rs b/src/partition/src/expr.rs index 317a9b2711..56e77e3490 100644 --- a/src/partition/src/expr.rs +++ b/src/partition/src/expr.rs @@ -533,7 +533,7 @@ mod tests { .try_as_logical_expr() .unwrap() .to_string(), - "Int64(10) < a OR a IS NULL" + "a > Int64(10) OR a IS NULL" ); // Test Gt with column on LHS @@ -558,7 +558,7 @@ mod tests { .try_as_logical_expr() .unwrap() .to_string(), - "Int64(10) > a OR a IS NULL" + "a < Int64(10) OR a IS NULL" ); // Test GtEq with column on LHS