summaryrefslogtreecommitdiff
path: root/contrib/dblink/expected
diff options
context:
space:
mode:
authorTom Lane2007-11-13 06:29:04 +0000
committerTom Lane2007-11-13 06:29:04 +0000
commit30e2c42e00a501278ffe80223bada52e2ba269f3 (patch)
treef568c076a58ce277ed2e1f58fc0b767bda19d607 /contrib/dblink/expected
parent0614c5e5fd93bd71a293d7c4e694b06a20c9a70c (diff)
Fix a few contrib regression test scripts that hadn't gotten the word
about best practice for including the module creation scripts: to wit that you should suppress NOTICE messages. This avoids creating regression failures by adding or removing comment lines in the module scripts.
Diffstat (limited to 'contrib/dblink/expected')
-rw-r--r--contrib/dblink/expected/dblink.out2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/dblink/expected/dblink.out b/contrib/dblink/expected/dblink.out
index 966da0fd6e7..bdd2f9926f6 100644
--- a/contrib/dblink/expected/dblink.out
+++ b/contrib/dblink/expected/dblink.out
@@ -6,7 +6,9 @@ SET search_path = public;
--
-- Turn off echoing so that expected file does not depend on
-- contents of dblink.sql.
+SET client_min_messages = warning;
\set ECHO none
+RESET client_min_messages;
CREATE TABLE foo(f1 int, f2 text, f3 text[], primary key (f1,f2));
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "foo_pkey" for table "foo"
INSERT INTO foo VALUES (0,'a','{"a0","b0","c0"}');