mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Reduce messages about implicit indexes and sequences to DEBUG1.
Per recent discussion on pgsql-hackers, these messages are too chatty for most users.
This commit is contained in:
@ -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 <> 'â';
|
||||
|
@ -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 <> 'â';
|
||||
|
Reference in New Issue
Block a user