diff options
| author | Tom Lane | 2001-09-30 20:16:21 +0000 |
|---|---|---|
| committer | Tom Lane | 2001-09-30 20:16:21 +0000 |
| commit | f00da6d841ad3a506aaa7b8d532fd7b5a4a8f247 (patch) | |
| tree | 0c92dd40a20705a8287ae114c76f8fea3286d0a8 /src/include | |
| parent | e43d51fddcf52e70bc66903aa53c72c8ae39cb2b (diff) | |
Allow the postmaster to accept changes in PGC_BACKEND GUC variables
from the config file, so that these changes will propagate to backends
started later. Already-started backends continue to ignore changes
in these variables.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/utils/guc.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index 8909320718..176fa7c893 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -4,7 +4,7 @@ * External declarations pertaining to backend/utils/misc/guc.c and * backend/utils/misc/guc-file.l * - * $Id: guc.h,v 1.9 2001/06/18 16:14:43 momjian Exp $ + * $Id: guc.h,v 1.10 2001/09/30 20:16:21 tgl Exp $ */ #ifndef GUC_H #define GUC_H @@ -23,11 +23,12 @@ * certain point in their main loop. It's safer to wait than to read a * file asynchronously.) * - * BACKEND options can only be set at postmaster startup or with the - * PGOPTIONS variable from the client when the connection is - * initiated. Note that you cannot change this kind of option using - * the SIGHUP mechanism, that would defeat the purpose of this being - * fixed for a given backend once started. + * BACKEND options can only be set at postmaster startup, from the + * configuration file, or with the PGOPTIONS variable from the client + * when the connection is initiated. Furthermore, an already-started + * backend will ignore changes to such an option in the configuration + * file. The idea is that these options are fixed for a given backend + * once it's started, but they can vary across backends. * * SUSET options can be set at postmaster startup, with the SIGHUP * mechanism, or from SQL if you're a superuser. These options cannot |
