mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +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:
@ -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');
|
||||
|
Reference in New Issue
Block a user