summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2017-08-21 09:17:35 +0000
committerPavan Deolasee2017-08-21 12:51:08 +0000
commit4384f863c632c0b4bd3e680af6a02b086578a2a5 (patch)
treeb7dc654b85662d6580fad68a7e3173de2506a2a6
parent50ed5c5b5af281344cecb319ed9d9fd6b7c39017 (diff)
Fix portals test case
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.
-rw-r--r--src/test/regress/expected/portals_1.out16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/test/regress/expected/portals_1.out b/src/test/regress/expected/portals_1.out
index 5588a89f0b..fabf302442 100644
--- a/src/test/regress/expected/portals_1.out
+++ b/src/test/regress/expected/portals_1.out
@@ -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