Skip to content

Commit 58364e4

Browse files
committed
Remove column count validation
That doesn't really tell us much in this test, anyway.
1 parent 3d6619a commit 58364e4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,6 @@ public void testMultipleBatchesWithLookupJoin() throws IOException {
10241024
);
10251025
Map<String, Object> result = runEsql(query);
10261026
var columns = as(result.get("columns"), List.class);
1027-
assertEquals(22, columns.size());
10281027
var values = as(result.get("values"), List.class);
10291028
assertEquals(10, values.size());
10301029
}

0 commit comments

Comments
 (0)