Second attempt to stabilize 05c02589.
authorJeff Davis <[email protected]>
Sun, 27 Dec 2020 20:09:00 +0000 (12:09 -0800)
committerJeff Davis <[email protected]>
Sun, 27 Dec 2020 20:09:00 +0000 (12:09 -0800)
Removing the EXPLAIN test to stabilize the buildfarm. The execution
test should still be effective to catch the bug even if the plan is
slightly different on different platforms.

src/test/regress/expected/groupingsets.out
src/test/regress/sql/groupingsets.sql

index 9e25f103458cce9a0fa668623ce4248a40ab451b..7c844c6e09e890894388ced26a728edd32648760 100644 (file)
@@ -1673,25 +1673,6 @@ update pg_class set reltuples = 10 where relname='bug_16784';
 insert into bug_16784 select g/10, g from generate_series(1,40) g;
 set work_mem='64kB';
 set enable_sort = false;
-explain (costs off) select * from
-  (values (1),(2)) v(a),
-  lateral (select v.a, i, j, count(*) from
-             bug_16784 group by cube(i,j)) s
-  order by v.a, i, j;
-                        QUERY PLAN                        
-----------------------------------------------------------
- Sort
-   Sort Key: "*VALUES*".column1, bug_16784.i, bug_16784.j
-   ->  Nested Loop
-         ->  Values Scan on "*VALUES*"
-         ->  MixedAggregate
-               Hash Key: bug_16784.i, bug_16784.j
-               Hash Key: bug_16784.i
-               Hash Key: bug_16784.j
-               Group Key: ()
-               ->  Seq Scan on bug_16784
-(10 rows)
-
 select * from
   (values (1),(2)) v(a),
   lateral (select a, i, j, count(*) from
index 6bd2bb10e3681f5194bc44cfa1bcec6616627918..18ae803e9debdf87db0ebf42859a15662c0b4a07 100644 (file)
@@ -468,11 +468,6 @@ insert into bug_16784 select g/10, g from generate_series(1,40) g;
 set work_mem='64kB';
 set enable_sort = false;
 
-explain (costs off) select * from
-  (values (1),(2)) v(a),
-  lateral (select v.a, i, j, count(*) from
-             bug_16784 group by cube(i,j)) s
-  order by v.a, i, j;
 select * from
   (values (1),(2)) v(a),
   lateral (select a, i, j, count(*) from