diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-07-20 00:47:53 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-07-20 00:47:53 +0000 |
commit | 5ffaa9005c451330bcde29d11a9385c0900ee707 (patch) | |
tree | 0e33f0f8054bd0523f7142a057e38569f11957e8 /src/backend/utils/misc/check_guc | |
parent | 0839f312e92c7ab0aecb2c4133197a7da7c5fc39 (diff) | |
download | postgresql-5ffaa9005c451330bcde29d11a9385c0900ee707.tar.gz postgresql-5ffaa9005c451330bcde29d11a9385c0900ee707.zip |
Add restart_after_crash GUC.
Normally, we automatically restart after a backend crash, but in some
cases when PostgreSQL is invoked by clusterware it may be desirable to
suppress this behavior, so we provide an option which does this.
Since no existing GUC group quite fits, create a new group called
"error handling options" for this and the previously undocumented GUC
exit_on_error, which is now documented.
Review by Fujii Masao.
Diffstat (limited to 'src/backend/utils/misc/check_guc')
-rwxr-xr-x | src/backend/utils/misc/check_guc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/check_guc b/src/backend/utils/misc/check_guc index df597b4879a..5152b4e929d 100755 --- a/src/backend/utils/misc/check_guc +++ b/src/backend/utils/misc/check_guc @@ -16,7 +16,7 @@ ## if an option is valid but shows up in only one file (guc.c but not ## postgresql.conf.sample), it should be listed here so that it ## can be ignored -INTENTIONALLY_NOT_INCLUDED="autocommit debug_deadlocks exit_on_error \ +INTENTIONALLY_NOT_INCLUDED="autocommit debug_deadlocks \ is_superuser lc_collate lc_ctype lc_messages lc_monetary lc_numeric lc_time \ pre_auth_delay role seed server_encoding server_version server_version_int \ session_authorization trace_lock_oidmin trace_lock_table trace_locks trace_lwlocks \ |