Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
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/btree_gist/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/btree_gist/expected')
-rw-r--r--contrib/btree_gist/expected/init.out17
1 files changed, 2 insertions, 15 deletions
diff --git a/contrib/btree_gist/expected/init.out b/contrib/btree_gist/expected/init.out
index 1dbbfd74ec2..c8082495456 100644
--- a/contrib/btree_gist/expected/init.out
+++ b/contrib/btree_gist/expected/init.out
@@ -2,19 +2,6 @@
-- first, define the datatype. Turn off echoing so that expected file
-- does not depend on contents of btree_gist.sql.
--
+SET client_min_messages = warning;
\set ECHO none
-psql:btree_gist.sql:7: NOTICE: type "gbtreekey4" is not yet defined
-DETAIL: Creating a shell type definition.
-psql:btree_gist.sql:12: NOTICE: argument type gbtreekey4 is only a shell
-psql:btree_gist.sql:23: NOTICE: type "gbtreekey8" is not yet defined
-DETAIL: Creating a shell type definition.
-psql:btree_gist.sql:28: NOTICE: argument type gbtreekey8 is only a shell
-psql:btree_gist.sql:39: NOTICE: type "gbtreekey16" is not yet defined
-DETAIL: Creating a shell type definition.
-psql:btree_gist.sql:44: NOTICE: argument type gbtreekey16 is only a shell
-psql:btree_gist.sql:55: NOTICE: type "gbtreekey32" is not yet defined
-DETAIL: Creating a shell type definition.
-psql:btree_gist.sql:60: NOTICE: argument type gbtreekey32 is only a shell
-psql:btree_gist.sql:71: NOTICE: type "gbtreekey_var" is not yet defined
-DETAIL: Creating a shell type definition.
-psql:btree_gist.sql:76: NOTICE: argument type gbtreekey_var is only a shell
+RESET client_min_messages;