Skip to content

Commit 8fc1e83

Browse files
committed
Fix typo.
1 parent a663cd6 commit 8fc1e83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ private void testLookupJoinTypes(String group) {
319319
initIndexes(group);
320320
initData(group);
321321
for (TestConfig config : testConfigurations.get(group).configs.values()) {
322-
if ((isValidDatType(config.mainType()) && isValidDatType(config.lookupType())) == false) {
322+
if ((isValidDataType(config.mainType()) && isValidDataType(config.lookupType())) == false) {
323323
continue;
324324
}
325325
String query = String.format(
@@ -577,7 +577,7 @@ public void testQuery(String query) {
577577
}
578578
}
579579

580-
private boolean isValidDatType(DataType dataType) {
580+
private boolean isValidDataType(DataType dataType) {
581581
return UNDER_CONSTRUCTION.get(dataType) == null || UNDER_CONSTRUCTION.get(dataType).isEnabled();
582582
}
583583
}

0 commit comments

Comments
 (0)