Skip to content

Commit 0f82149

Browse files
Fix merge error
1 parent 9164afe commit 0f82149

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6146,7 +6146,7 @@ public void testReplaceStringCasingWithInsensitiveEqualsLowerTrue() {
61466146
public void testReplaceStringCasingWithInsensitiveEqualsEquals() {
61476147
for (var fn : List.of("TO_LOWER", "TO_UPPER")) {
61486148
var value = fn.equals("TO_LOWER") ? fn.toLowerCase(Locale.ROOT) : fn.toUpperCase(Locale.ROOT);
6149-
value += "�✈��"; // these should not cause folding, they're not in the upper/lower char class
6149+
value += "🐔✈🔥🎉"; // these should not cause folding, they're not in the upper/lower char class
61506150
var plan = optimizedPlan("FROM test | WHERE " + fn + "(first_name) == \"" + value + "\"");
61516151
var limit = as(plan, Limit.class);
61526152
var filter = as(limit.child(), Filter.class);
@@ -6161,7 +6161,7 @@ public void testReplaceStringCasingWithInsensitiveEqualsEquals() {
61616161
public void testReplaceStringCasingWithInsensitiveEqualsNotEquals() {
61626162
for (var fn : List.of("TO_LOWER", "TO_UPPER")) {
61636163
var value = fn.equals("TO_LOWER") ? fn.toLowerCase(Locale.ROOT) : fn.toUpperCase(Locale.ROOT);
6164-
value += "�✈��"; // these should not cause folding, they're not in the upper/lower char class
6164+
value += "🐔✈🔥🎉"; // these should not cause folding, they're not in the upper/lower char class
61656165
var plan = optimizedPlan("FROM test | WHERE " + fn + "(first_name) != \"" + value + "\"");
61666166
var limit = as(plan, Limit.class);
61676167
var filter = as(limit.child(), Filter.class);

0 commit comments

Comments
 (0)