summaryrefslogtreecommitdiff
path: root/contrib/citext
diff options
context:
space:
mode:
authorRobert Haas2012-07-05 00:34:24 +0000
committerRobert Haas2012-07-05 00:35:29 +0000
commitd7c734841b3e6cb44de363a8a3d83c35b75b30d9 (patch)
tree00758ace61b42bed2218377230ca9f2b2f7b3161 /contrib/citext
parent3e00d332615be32d64bbb1f604a783fade3146c0 (diff)
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/citext')
-rw-r--r--contrib/citext/expected/citext.out1
-rw-r--r--contrib/citext/expected/citext_1.out1
2 files changed, 0 insertions, 2 deletions
diff --git a/contrib/citext/expected/citext.out b/contrib/citext/expected/citext.out
index 5392a7d1f3..000c925642 100644
--- a/contrib/citext/expected/citext.out
+++ b/contrib/citext/expected/citext.out
@@ -218,7 +218,6 @@ SELECT citext_cmp('B'::citext, 'a'::citext) > 0 AS true;
CREATE TEMP TABLE try (
name citext PRIMARY KEY
);
-NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "try_pkey" for table "try"
INSERT INTO try (name)
VALUES ('a'), ('ab'), ('â'), ('aba'), ('b'), ('ba'), ('bab'), ('AZ');
SELECT name, 'a' = name AS eq_a FROM try WHERE name <> 'â';
diff --git a/contrib/citext/expected/citext_1.out b/contrib/citext/expected/citext_1.out
index 5316ad0cda..8373dc8846 100644
--- a/contrib/citext/expected/citext_1.out
+++ b/contrib/citext/expected/citext_1.out
@@ -218,7 +218,6 @@ SELECT citext_cmp('B'::citext, 'a'::citext) > 0 AS true;
CREATE TEMP TABLE try (
name citext PRIMARY KEY
);
-NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "try_pkey" for table "try"
INSERT INTO try (name)
VALUES ('a'), ('ab'), ('â'), ('aba'), ('b'), ('ba'), ('bab'), ('AZ');
SELECT name, 'a' = name AS eq_a FROM try WHERE name <> 'â';