From fb952a63cd684a4f15e2fb4331a4b05a97064b76 Mon Sep 17 00:00:00 2001 From: Jialiang Liang Date: Thu, 5 Feb 2026 12:09:25 -0800 Subject: [PATCH 1/3] [Maintenance] Temporarily Ignore TPCH flaky test Signed-off-by: Jialiang Liang --- .../java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java index d83140e0dd5..7f314414dfa 100644 --- a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java +++ b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java @@ -17,6 +17,7 @@ import java.util.Locale; import org.json.JSONObject; import org.junit.Assume; +import org.junit.Ignore; import org.junit.Test; import org.opensearch.sql.ppl.PPLIntegTestCase; import org.opensearch.sql.util.Retry; @@ -39,6 +40,7 @@ public void init() throws Exception { loadIndex(Index.TPCH_REGION); } + @Ignore("Flaky test - see https://github.com/opensearch-project/sql/issues/XXXX") @Test public void testQ1() throws IOException { String ppl = sanitize(loadFromFile("tpch/queries/q1.ppl")); From 7952cd4448b712b5d538c6ebb7b2e9febdfd0081 Mon Sep 17 00:00:00 2001 From: Jialiang Liang Date: Thu, 5 Feb 2026 12:14:04 -0800 Subject: [PATCH 2/3] remove note Signed-off-by: Jialiang Liang --- .../java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java index 7f314414dfa..c8f2c5c4e0c 100644 --- a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java +++ b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java @@ -40,7 +40,7 @@ public void init() throws Exception { loadIndex(Index.TPCH_REGION); } - @Ignore("Flaky test - see https://github.com/opensearch-project/sql/issues/XXXX") + @Ignore @Test public void testQ1() throws IOException { String ppl = sanitize(loadFromFile("tpch/queries/q1.ppl")); From 5580793949153f969b4d15529225b344280eaff4 Mon Sep 17 00:00:00 2001 From: Jialiang Liang Date: Thu, 5 Feb 2026 12:45:02 -0800 Subject: [PATCH 3/3] ignore the whole suite Signed-off-by: Jialiang Liang --- .../java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java | 2 +- .../opensearch/sql/calcite/tpch/CalcitePPLTpchPaginatingIT.java | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java index c8f2c5c4e0c..7db42c62e65 100644 --- a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java +++ b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchIT.java @@ -22,6 +22,7 @@ import org.opensearch.sql.ppl.PPLIntegTestCase; import org.opensearch.sql.util.Retry; +@Ignore @Retry public class CalcitePPLTpchIT extends PPLIntegTestCase { @@ -40,7 +41,6 @@ public void init() throws Exception { loadIndex(Index.TPCH_REGION); } - @Ignore @Test public void testQ1() throws IOException { String ppl = sanitize(loadFromFile("tpch/queries/q1.ppl")); diff --git a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchPaginatingIT.java b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchPaginatingIT.java index a9de5f732ae..777362e8095 100644 --- a/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchPaginatingIT.java +++ b/integ-test/src/test/java/org/opensearch/sql/calcite/tpch/CalcitePPLTpchPaginatingIT.java @@ -6,8 +6,10 @@ package org.opensearch.sql.calcite.tpch; import org.junit.After; +import org.junit.Ignore; import org.opensearch.sql.util.Retry; +@Ignore @Retry public class CalcitePPLTpchPaginatingIT extends CalcitePPLTpchIT {