@@ -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