Skip to content

Commit e4fa9b2

Browse files
committed
fix
Signed-off-by: Lantao Jin <ltjin@amazon.com>
1 parent 1e3656d commit e4fa9b2

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

integ-test/src/test/java/org/opensearch/sql/calcite/remote/CalciteMvCombineCommandIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public void init() throws Exception {
3232
super.init();
3333
enableCalcite();
3434
loadIndex(Index.MVCOMBINE);
35-
updateIndexSettings(INDEX, "{ \"index\": { \"max_inner_result_window\":" + 1000 + " } }");
35+
updateIndexSettings(INDEX, "{ \"index\": { \"max_inner_result_window\":" + 10000 + " } }");
3636
}
3737

3838
@After

integ-test/src/test/java/org/opensearch/sql/calcite/remote/CalcitePPLMapPathIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public void testAddtotalsOnMapPath() throws IOException {
152152
public void testMvcombineOnMapPath() throws IOException {
153153
try {
154154
updateIndexSettings(
155-
TEST_INDEX, "{ \"index\": { \"max_inner_result_window\":" + 1000 + " } }");
155+
TEST_INDEX, "{ \"index\": { \"max_inner_result_window\":" + 10000 + " } }");
156156
JSONObject result =
157157
ppl(
158158
"""

integ-test/src/test/java/org/opensearch/sql/ppl/NewAddedCommandsIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public void testMvCombineUnsupportedInV2() throws IOException {
247247
JSONObject result;
248248
try {
249249
updateIndexSettings(
250-
TEST_INDEX_BANK, "{ \"index\": { \"max_inner_result_window\":" + 1000 + " } }");
250+
TEST_INDEX_BANK, "{ \"index\": { \"max_inner_result_window\":" + 10000 + " } }");
251251
result =
252252
executeQuery(
253253
String.format(

integ-test/src/test/java/org/opensearch/sql/security/CalciteCrossClusterSearchIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ public void testCrossClusterMvcombine() throws IOException {
393393
try {
394394
updateIndexSettings(
395395
TEST_INDEX_BANK,
396-
"{ \"index\": { \"max_inner_result_window\":" + 1000 + " } }",
396+
"{ \"index\": { \"max_inner_result_window\":" + 10000 + " } }",
397397
remoteClient());
398398
JSONObject result =
399399
executeQuery(

0 commit comments

Comments
 (0)