summaryrefslogtreecommitdiff
path: root/contrib/btree_gist
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2012-07-04 20:34:24 -0400
committerRobert Haas <rhaas@postgresql.org>2012-07-04 20:35:29 -0400
commitd7c734841b3e6cb44de363a8a3d83c35b75b30d9 (patch)
tree00758ace61b42bed2218377230ca9f2b2f7b3161 /contrib/btree_gist
parent3e00d332615be32d64bbb1f604a783fade3146c0 (diff)
downloadpostgresql-d7c734841b3e6cb44de363a8a3d83c35b75b30d9.tar.gz
Reduce messages about implicit indexes and sequences to DEBUG1.
Per recent discussion on pgsql-hackers, these messages are too chatty for most users.
Diffstat (limited to 'contrib/btree_gist')
-rw-r--r--contrib/btree_gist/expected/not_equal.out1
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/btree_gist/expected/not_equal.out b/contrib/btree_gist/expected/not_equal.out
index d9b91e2d56..1d5b55db5a 100644
--- a/contrib/btree_gist/expected/not_equal.out
+++ b/contrib/btree_gist/expected/not_equal.out
@@ -31,7 +31,6 @@ CREATE TABLE zoo (
animal TEXT,
EXCLUDE USING gist (cage WITH =, animal WITH <>)
);
-NOTICE: CREATE TABLE / EXCLUDE will create implicit index "zoo_cage_animal_excl" for table "zoo"
INSERT INTO zoo VALUES(123, 'zebra');
INSERT INTO zoo VALUES(123, 'zebra');
INSERT INTO zoo VALUES(123, 'lion');