Skip to content

Commit 0e02b5c

Browse files
Fix compile error
1 parent 8703c28 commit 0e02b5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/LookupJoinTypesIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ public LookupJoinTypesIT(BinaryComparisonOperation operation) {
348348
}
349349

350350
static String stringForOperation(BinaryComparisonOperation operation) {
351-
return operation == null ? "_field" : "_" + operation.name().toLowerCase();
351+
return operation == null ? "_field" : "_" + operation.name().toLowerCase(Locale.ROOT);
352352
}
353353

354354
private static boolean existingIndex(

0 commit comments

Comments
 (0)