This is an automated email from the ASF dual-hosted git repository.

jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a60d5b246 [Flaky-test] Fix 
QueryRunnerTest.testSqlWithExceptionMsgChecker() (#15825)
4a60d5b246 is described below

commit 4a60d5b24633e27163a515a45706fe997bba51cb
Author: Xiaotian (Jackie) Jiang <17555551+jackie-ji...@users.noreply.github.com>
AuthorDate: Mon May 19 15:22:51 2025 -0600

    [Flaky-test] Fix QueryRunnerTest.testSqlWithExceptionMsgChecker() (#15825)
---
 .../java/org/apache/pinot/query/runtime/queries/QueryRunnerTest.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/pinot-query-runtime/src/test/java/org/apache/pinot/query/runtime/queries/QueryRunnerTest.java
 
b/pinot-query-runtime/src/test/java/org/apache/pinot/query/runtime/queries/QueryRunnerTest.java
index b92394f9dc..f01f0b623f 100644
--- 
a/pinot-query-runtime/src/test/java/org/apache/pinot/query/runtime/queries/QueryRunnerTest.java
+++ 
b/pinot-query-runtime/src/test/java/org/apache/pinot/query/runtime/queries/QueryRunnerTest.java
@@ -313,9 +313,11 @@ public class QueryRunnerTest extends QueryRunnerTestBase {
     });
 
     // Timeout exception should occur with this option:
+    // - If the query times out during submission, we get: "Error occurred 
during stage submission: Timeout"
+    // - If the query times out during execution, we get: "Timed out on stage 
0 waiting for data sent by a child stage"
     testCases.add(new Object[]{
         "SET timeoutMs = 1; SELECT * FROM a JOIN b ON a.col1 = b.col1 JOIN c 
ON a.col1 = c.col1",
-        "Timeout"
+        "Time"
     });
 
     // Function with incorrect argument signature should throw runtime 
exception when casting string to numeric


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to