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

yashmayya 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 383bbce519 Fix testGroupByAggregationWithLimitZero expected type 
(#14710)
383bbce519 is described below

commit 383bbce519f9dc54591240e161a9f909bda9c00d
Author: Yash Mayya <yash.ma...@gmail.com>
AuthorDate: Tue Dec 24 17:16:54 2024 +0700

    Fix testGroupByAggregationWithLimitZero expected type (#14710)
---
 .../apache/pinot/integration/tests/OfflineClusterIntegrationTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterIntegrationTest.java
 
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterIntegrationTest.java
index 1f19efa778..4f3f26dfba 100644
--- 
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterIntegrationTest.java
+++ 
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterIntegrationTest.java
@@ -3659,7 +3659,7 @@ public class OfflineClusterIntegrationTest extends 
BaseClusterIntegrationTestSet
       throws Exception {
     setUseMultiStageQueryEngine(useMultiStageQueryEngine);
 
-    String sqlQuery = "SELECT Origin, SUM(ArrDelay) FROM mytable GROUP BY 
Origin LIMIT 0";
+    String sqlQuery = "SELECT Origin, AVG(ArrDelay) FROM mytable GROUP BY 
Origin LIMIT 0";
     JsonNode response = postQuery(sqlQuery);
     assertTrue(response.get("exceptions").isEmpty());
     JsonNode rows = response.get("resultTable").get("rows");


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

Reply via email to