Skip to content

Commit 3748346

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 8367062 commit 3748346

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,9 @@ public void testMultipleBatchesWithLookupJoin() throws IOException {
10191019
bulkLoadTestDataLookupMode(10);
10201020
// lookup join with and without sort
10211021
for (String sort : List.of("", "| sort integer")) {
1022-
var query = requestObjectBuilder().query(format(null, "from {},no_sort_field_idx* | lookup join {} on integer {}", testIndexName(), testIndexName(), sort));
1022+
var query = requestObjectBuilder().query(
1023+
format(null, "from {},no_sort_field_idx* | lookup join {} on integer {}", testIndexName(), testIndexName(), sort)
1024+
);
10231025
Map<String, Object> result = runEsql(query);
10241026
var columns = as(result.get("columns"), List.class);
10251027
assertEquals(22, columns.size());

0 commit comments

Comments
 (0)