You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by jo...@apache.org on 2023/03/20 19:10:34 UTC

[impala] 02/02: IMPALA-11937: Fix wrong GROUP BY ordinal in PERF_AGG-Q10

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

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

commit 9ccb5f7bfc5ffef0001f116abe032231feef8efd
Author: stiga-huang <hu...@gmail.com>
AuthorDate: Fri Feb 24 07:50:02 2023 +0800

    IMPALA-11937: Fix wrong GROUP BY ordinal in PERF_AGG-Q10
    
    This fixes the wrong GROUP BY ordinal used in PERF_AGG-Q10 so the query
    can actually run.
    
    Verified by
      bin/run-workload.py --workloads=targeted-perf \
          --table_formats=parquet/none \
          --query_names=PERF_AGG-Q10
    
    Change-Id: I285f74a12bb16c60d30ffe958337b054baf86479
    Reviewed-on: http://gerrit.cloudera.org:8080/19531
    Reviewed-by: Impala Public Jenkins <im...@cloudera.com>
    Reviewed-by: Daniel Becker <da...@cloudera.com>
    Tested-by: Daniel Becker <da...@cloudera.com>
---
 testdata/workloads/targeted-perf/queries/aggregation.test | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testdata/workloads/targeted-perf/queries/aggregation.test b/testdata/workloads/targeted-perf/queries/aggregation.test
index 68b9b07db..9723a47b1 100644
--- a/testdata/workloads/targeted-perf/queries/aggregation.test
+++ b/testdata/workloads/targeted-perf/queries/aggregation.test
@@ -2714,7 +2714,7 @@ SELECT
   'grouping value' g
 FROM
   lineitem
-GROUP BY 2
+GROUP BY 3
 ---- LABELS
 AGG1,AGG2,G
 ---- RESULTS
@@ -2732,4 +2732,4 @@ row_regex: .*FastLimitCheckExceededRows: [1-9][0-9]*
 select l_orderkey from lineitem group by 1 limit 10;
 ---- RUNTIME_PROFILE
 row_regex: .*FastLimitCheckExceededRows: [1-9][0-9]*
-====
\ No newline at end of file
+====