Skip to content

Commit

Permalink
Fix testGroupByAggregationWithLimitZero expected type (#14710)
Browse files Browse the repository at this point in the history
yashmayya authored Dec 24, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent b398fed commit 383bbce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -3659,7 +3659,7 @@ public void testGroupByAggregationWithLimitZero(boolean useMultiStageQueryEngine
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");

0 comments on commit 383bbce

Please sign in to comment.