diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2015-05-14 20:08:51 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2015-05-14 20:08:51 -0400 |
commit | a486e35706eaea17e27e5fa0a2de6bc98546de1e (patch) | |
tree | e46908c236abb0e34730877ab54fb993759e2439 /src/include/utils/guc_tables.h | |
parent | 333a870f94ac23f29befa346324f9dab7f3265e9 (diff) | |
download | postgresql-a486e35706eaea17e27e5fa0a2de6bc98546de1e.tar.gz postgresql-a486e35706eaea17e27e5fa0a2de6bc98546de1e.zip |
Add pg_settings.pending_restart column
with input from David G. Johnston, Robert Haas, Michael Paquier
Diffstat (limited to 'src/include/utils/guc_tables.h')
-rw-r--r-- | src/include/utils/guc_tables.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/utils/guc_tables.h b/src/include/utils/guc_tables.h index cf319afd52d..c0f9cb9374b 100644 --- a/src/include/utils/guc_tables.h +++ b/src/include/utils/guc_tables.h @@ -167,6 +167,7 @@ struct config_generic * Caution: the GUC_IS_IN_FILE bit is transient state for ProcessConfigFile. * Do not assume that its value represents useful information elsewhere. */ +#define GUC_PENDING_RESTART 0x0002 /* GUC records for specific variable types */ |