We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent043be9a commit0e9b05bCopy full SHA for 0e9b05b
contrib/dblink/expected/dblink.out
@@ -175,7 +175,9 @@ SELECT dblink_close('rmt_foo_cursor');
175
-- should generate 'cursor "rmt_foo_cursor" not found' error
176
SELECT *
177
FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
178
-ERROR: cursor "rmt_foo_cursor" does not exist
+ERROR: sql error
179
+DETAIL: ERROR: cursor "rmt_foo_cursor" does not exist
180
+
181
-- close the persistent connection
182
SELECT dblink_disconnect();
183
dblink_disconnect
@@ -375,7 +377,9 @@ SELECT dblink_close('myconn','rmt_foo_cursor');
375
377
376
378
379
FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
380
381
382
383
-- close the named persistent connection
384
SELECT dblink_disconnect('myconn');
385