Skip to content

Commit 0e9b05b

Browse files
committed
expected results for dblink test seem to be out of date ...
1 parent 043be9a commit 0e9b05b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

contrib/dblink/expected/dblink.out

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ SELECT dblink_close('rmt_foo_cursor');
175175
-- should generate 'cursor "rmt_foo_cursor" not found' error
176176
SELECT *
177177
FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
178-
ERROR: cursor "rmt_foo_cursor" does not exist
178+
ERROR: sql error
179+
DETAIL: ERROR: cursor "rmt_foo_cursor" does not exist
180+
179181
-- close the persistent connection
180182
SELECT dblink_disconnect();
181183
dblink_disconnect
@@ -375,7 +377,9 @@ SELECT dblink_close('myconn','rmt_foo_cursor');
375377
-- should generate 'cursor "rmt_foo_cursor" not found' error
376378
SELECT *
377379
FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
378-
ERROR: cursor "rmt_foo_cursor" does not exist
380+
ERROR: sql error
381+
DETAIL: ERROR: cursor "rmt_foo_cursor" does not exist
382+
379383
-- close the named persistent connection
380384
SELECT dblink_disconnect('myconn');
381385
dblink_disconnect

0 commit comments

Comments
 (0)