1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Remove lock* GUC variables from postgresql.conf.

Document why certain GUC variables aren't in postgresql.conf.
This commit is contained in:
Bruce Momjian
2003-06-11 05:04:51 +00:00
parent 65058fcf2b
commit b83f711dec
2 changed files with 4 additions and 15 deletions

View File

@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.127 2003/05/28 18:19:09 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.128 2003/06/11 05:04:51 momjian Exp $
*
*--------------------------------------------------------------------
*/
@@ -689,6 +689,7 @@ static struct config_int
60, 1, 600, NULL, NULL
},
/* Not for general use */
{
{"pre_auth_delay", PGC_SIGHUP}, &PreAuthDelay,
0, 0, 60, NULL, NULL
@@ -871,6 +872,7 @@ static struct config_string
"$user,public", assign_search_path, NULL
},
/* Can't be set in postgresql.conf */
{
{"server_encoding", PGC_INTERNAL, GUC_REPORT},
&server_encoding_string,
@@ -888,6 +890,7 @@ static struct config_string
"notice", assign_log_min_messages, NULL
},
/* Not for general use --- used by SET SESSION AUTHORIZATION */
{
{"session_authorization", PGC_USERSET, GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL},
&session_authorization_string,