diff options
author | Robert Haas <rhaas@postgresql.org> | 2012-07-04 20:34:24 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2012-07-04 20:35:29 -0400 |
commit | d7c734841b3e6cb44de363a8a3d83c35b75b30d9 (patch) | |
tree | 00758ace61b42bed2218377230ca9f2b2f7b3161 /src/backend/commands/indexcmds.c | |
parent | 3e00d332615be32d64bbb1f604a783fade3146c0 (diff) | |
download | postgresql-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 'src/backend/commands/indexcmds.c')
-rw-r--r-- | src/backend/commands/indexcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 1f9bf61890..e5d1d8b699 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -593,7 +593,7 @@ DefineIndex(RangeVar *heapRelation, constraint_type = NULL; /* keep compiler quiet */ } - ereport(NOTICE, + ereport(DEBUG1, (errmsg("%s %s will create implicit index \"%s\" for table \"%s\"", is_alter_table ? "ALTER TABLE / ADD" : "CREATE TABLE /", constraint_type, |