Skip to content

Commit 52a5f5c

Browse files
Fix compile
1 parent 202101c commit 52a5f5c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

x-pack/plugin/sql/sql-action/src/test/java/org/elasticsearch/xpack/sql/action/TestSqlQueryRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ public XContentBuilder toXContent(XContentBuilder builder, Params params) throws
8787
ProtoShim.toProto(this.waitForCompletionTimeout()),
8888
this.keepOnCompletion(),
8989
ProtoShim.toProto(this.keepAlive()),
90-
this.allowPartialSearchResults()
90+
this.allowPartialSearchResults(),
91+
null
9192
);
9293
return SqlTestUtils.toXContentBuilder(builder, this, protoInstance);
9394
}

x-pack/plugin/sql/sql-action/src/test/java/org/elasticsearch/xpack/sql/action/TestSqlTranslateRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ public XContentBuilder toXContent(XContentBuilder builder, Params params) throws
6262
null,
6363
false,
6464
null,
65-
false
65+
false,
66+
null
6667
);
6768
return SqlTestUtils.toXContentBuilder(builder, this, protoInstance);
6869
}

0 commit comments

Comments
 (0)