Skip to content

Commit 3a9e468

Browse files
committed
Fix test
1 parent 47be335 commit 3a9e468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1567,7 +1567,7 @@ public void testFullTextFunctionsDisjunctionPushdown() {
15671567
public void testFullTextFunctionsDisjunctionWithFiltersPushdown() {
15681568
String query = """
15691569
from test
1570-
| where (first_name:"Anna" or first_name:"Anneke") and last_name:"first_name) > 5
1570+
| where (first_name:"Anna" or first_name:"Anneke") and length(last_name) > 5
15711571
| sort emp_no
15721572
""";
15731573
var plan = plannerOptimizer.plan(query);

0 commit comments

Comments
 (0)