OSDN Git Service

In postgresql.conf.sample, use on/off rather than true/false.
authorRobert Haas <rhaas@postgresql.org>
Tue, 27 Jul 2010 16:06:53 +0000 (16:06 +0000)
committerRobert Haas <rhaas@postgresql.org>
Tue, 27 Jul 2010 16:06:53 +0000 (16:06 +0000)
We used to be consistent about this, but my recent patch to add a
restart_after_crash GUC failed to follow the existing convention.

Report and patch from Fujii Masao.

src/backend/utils/misc/postgresql.conf.sample

index d3c07bd..d31f1a1 100644 (file)
 # ERROR HANDLING
 #------------------------------------------------------------------------------
 
-#exit_on_error = false                         # terminate session on any error?
-#restart_after_crash = true                    # reinitialize after backend crash?
+#exit_on_error = off                           # terminate session on any error?
+#restart_after_crash = on                      # reinitialize after backend crash?
 
 
 #------------------------------------------------------------------------------