Skip to content

Commit 9335c3e

Browse files
committed
Fixup
1 parent add4368 commit 9335c3e

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/formatter/TextFormatTests.java

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,16 @@ public void testTsvFormatWithDropNullColumns() {
269269
}
270270

271271
private static EsqlQueryResponse emptyData() {
272-
<<<<<<< HEAD
273-
return new EsqlQueryResponse(singletonList(new ColumnInfoImpl("name", "keyword")), emptyList(), 0, 0, null, false, false, null);
274-
=======
275-
return new EsqlQueryResponse(singletonList(new ColumnInfoImpl("name", "keyword", null)), emptyList(), null, false, false, null);
276-
>>>>>>> main
272+
return new EsqlQueryResponse(
273+
singletonList(new ColumnInfoImpl("name", "keyword", null)),
274+
emptyList(),
275+
0,
276+
0,
277+
null,
278+
false,
279+
false,
280+
null
281+
);
277282
}
278283

279284
private static EsqlQueryResponse regularData() {

0 commit comments

Comments
 (0)