]> granicus.if.org Git - postgresql/commitdiff
expected results for dblink test seem to be out of date ...
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 14 Sep 2003 02:30:07 +0000 (02:30 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 14 Sep 2003 02:30:07 +0000 (02:30 +0000)
contrib/dblink/expected/dblink.out

index 4a0d890195afe96c991ce4944f2a0e2aa549d7fd..50938b3ef1bc14eaafaf435f10782cdf0670c623 100644 (file)
@@ -175,7 +175,9 @@ SELECT dblink_close('rmt_foo_cursor');
 -- should generate 'cursor "rmt_foo_cursor" not found' error
 SELECT *
 FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
-ERROR:  cursor "rmt_foo_cursor" does not exist
+ERROR:  sql error
+DETAIL:  ERROR:  cursor "rmt_foo_cursor" does not exist
+
 -- close the persistent connection
 SELECT dblink_disconnect();
  dblink_disconnect 
@@ -375,7 +377,9 @@ SELECT dblink_close('myconn','rmt_foo_cursor');
 -- should generate 'cursor "rmt_foo_cursor" not found' error
 SELECT *
 FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
-ERROR:  cursor "rmt_foo_cursor" does not exist
+ERROR:  sql error
+DETAIL:  ERROR:  cursor "rmt_foo_cursor" does not exist
+
 -- close the named persistent connection
 SELECT dblink_disconnect('myconn');
  dblink_disconnect