From 0e9b05bde921b87130a83138c2e089902f2fe843 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 14 Sep 2003 02:30:07 +0000 Subject: [PATCH] expected results for dblink test seem to be out of date ... --- contrib/dblink/expected/dblink.out | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contrib/dblink/expected/dblink.out b/contrib/dblink/expected/dblink.out index 4a0d890195..50938b3ef1 100644 --- a/contrib/dblink/expected/dblink.out +++ b/contrib/dblink/expected/dblink.out @@ -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 -- 2.40.0