We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bf895d commit 03fde99Copy full SHA for 03fde99
rust/lance-graph/src/datafusion_planner/expression.rs
@@ -491,7 +491,10 @@ mod tests {
491
// Arithmetic expressions should now return a BinaryExpr with Plus operator
492
assert!(s.contains("BinaryExpr"), "Should be a BinaryExpr");
493
assert!(s.contains("Plus"), "Should contain Plus operator");
494
- assert!(s.contains("p__age"), "Should contain the left operand column");
+ assert!(
495
+ s.contains("p__age"),
496
+ "Should contain the left operand column"
497
+ );
498
}
499
500
#[test]
0 commit comments