1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Remove postgresql.conf of 'info' as a valid client_min_messages level.

This commit is contained in:
Bruce Momjian
2004-07-11 21:48:25 +00:00
parent 7b0f060d54
commit 5ff9566686
3 changed files with 8 additions and 4 deletions

View File

@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.215 2004/07/11 21:34:00 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.216 2004/07/11 21:48:25 momjian Exp $
*
*--------------------------------------------------------------------
*/
@ -5210,6 +5210,10 @@ assign_msglvl(int *var, const char *newval, bool doit, GucSource source)
if (doit)
(*var) = LOG;
}
/*
* Client_min_messages always prints 'info', but
* we allow it as a value anyway.
*/
else if (pg_strcasecmp(newval, "info") == 0)
{
if (doit)