Fix portals test case
authorPavan Deolasee <[email protected]>
Mon, 21 Aug 2017 09:17:35 +0000 (14:47 +0530)
committerPavan Deolasee <[email protected]>
Mon, 21 Aug 2017 12:51:08 +0000 (18:21 +0530)
Accept expected output changes which were missed because we've an alternate
expected output file which is not merged automatically. The changes simply
include an additional Project node in the explain node.

src/test/regress/expected/portals_1.out

index 5588a89f0bd79800c3ff1c6d9ecc9b1c469f5e72..fabf3024427c63014d3c9a7b7c7b3ef5a18ed39e 100644 (file)
@@ -1250,18 +1250,20 @@ fetch backward all in c1;
 rollback;
 begin;
 explain (costs off) declare c2 cursor for select generate_series(1,3) as g;
- QUERY PLAN 
-------------
- Result
-(1 row)
-
-explain (costs off) declare c2 scroll cursor for select generate_series(1,3) as g;
   QUERY PLAN  
 --------------
- Materialize
+ ProjectSet
    ->  Result
 (2 rows)
 
+explain (costs off) declare c2 scroll cursor for select generate_series(1,3) as g;
+     QUERY PLAN     
+--------------------
+ Materialize
+   ->  ProjectSet
+         ->  Result
+(3 rows)
+
 declare c2 scroll cursor for select generate_series(1,3) as g;
 fetch all in c2;
  g