Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/test/regress/expected/portals.out
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
--
-- Cursor regression tests
--
SET synchronize_seqscans = off;
BEGIN;
DECLARE foo1 SCROLL CURSOR FOR SELECT * FROM tenk1 ORDER BY unique2;
DECLARE foo2 SCROLL CURSOR FOR SELECT * FROM tenk2;
Expand Down Expand Up @@ -1518,3 +1519,4 @@ fetch backward all in c2;
(3 rows)

rollback;
reset synchronize_seqscans;
3 changes: 3 additions & 0 deletions src/test/regress/sql/portals.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
-- Cursor regression tests
--

SET synchronize_seqscans = off;

BEGIN;

DECLARE foo1 SCROLL CURSOR FOR SELECT * FROM tenk1 ORDER BY unique2;
Expand Down Expand Up @@ -569,3 +571,4 @@ declare c2 scroll cursor for select generate_series(1,3) as g;
fetch all in c2;
fetch backward all in c2;
rollback;
reset synchronize_seqscans;
Loading