This is an automated email from the ASF dual-hosted git repository. avamingli pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit 64cfb48305b66fc9501200bcfcedbfd4a2ebe55d Author: Zhang Mingli <[email protected]> AuthorDate: Tue Dec 24 18:25:08 2024 +0800 Fix groupingsets_optimizer.out Authored-by: Zhang Mingli [email protected] --- src/test/regress/expected/groupingsets_optimizer.out | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/test/regress/expected/groupingsets_optimizer.out b/src/test/regress/expected/groupingsets_optimizer.out index b0ea867c9a..a594a6c436 100644 --- a/src/test/regress/expected/groupingsets_optimizer.out +++ b/src/test/regress/expected/groupingsets_optimizer.out @@ -1355,7 +1355,6 @@ select unsortable_col1, unsortable_col2, from gstest5 group by grouping sets ((unsortable_col1),(unsortable_col2)) order by 3,5; INFO: GPORCA failed to produce a plan, falling back to planner -DETAIL: Feature not supported: Grouping function with multiple arguments unsortable_col1 | unsortable_col2 | grouping | count | sum -----------------+-----------------+----------+-------+----- 4 | | 1 | 4 | 60 @@ -1371,7 +1370,6 @@ explain (costs off) from gstest5 group by grouping sets ((unsortable_col1),(unsortable_col2)) order by 3,5; INFO: GPORCA failed to produce a plan, falling back to planner -DETAIL: Feature not supported: Grouping function with multiple arguments QUERY PLAN ------------------------------------------------------------------------------- Gather Motion 3:1 (slice1; segments: 3) @@ -1395,7 +1393,6 @@ select unsortable_col1, unsortable_col2, from gstest5 group by grouping sets ((unsortable_col1),(unsortable_col2),()) order by 3,5; INFO: GPORCA failed to produce a plan, falling back to planner -DETAIL: Feature not supported: Grouping function with multiple arguments unsortable_col1 | unsortable_col2 | grouping | count | sum -----------------+-----------------+----------+-------+----- 4 | | 1 | 4 | 60 @@ -1412,7 +1409,6 @@ explain (costs off) from gstest5 group by grouping sets ((unsortable_col1),(unsortable_col2),()) order by 3,5; INFO: GPORCA failed to produce a plan, falling back to planner -DETAIL: Feature not supported: Grouping function with multiple arguments QUERY PLAN ------------------------------------------------------------------------------- Gather Motion 3:1 (slice1; segments: 3) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
