diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-01-04 05:50:25 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-01-04 05:50:25 +0000 |
commit | 5a60ba50784dcca1ffd5fe27156d23034484992c (patch) | |
tree | 57491b800136b9099cd063272300af7c69eb58c7 | |
parent | 0b79ed27457bda0f2545257225923488ca72a453 (diff) | |
download | postgresql-5a60ba50784dcca1ffd5fe27156d23034484992c.tar.gz postgresql-5a60ba50784dcca1ffd5fe27156d23034484992c.zip |
Replace #ifdef, #endif with # requires comment.
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index db2a372b394..071e814454c 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -120,19 +120,17 @@ #debug_print_plan = false #debug_pretty_print = false -#ifdef USE_ASSERT_CHECKING +# requires USE_ASSERT_CHECKING #debug_assertions = true -#endif # # Syslog # -#ifdef ENABLE_SYSLOG +# requires ENABLE_SYSLOG #syslog = 0 # range 0-2 #syslog_facility = 'LOCAL0' #syslog_ident = 'postgres' -#endif # @@ -142,9 +140,9 @@ #show_planner_stats = false #show_executor_stats = false #show_query_stats = false -#ifdef BTREE_BUILD_STATS + +# requires BTREE_BUILD_STATS #show_btree_build_stats = false -#endif # @@ -161,14 +159,14 @@ # Lock Tracing # #trace_notify = false -#ifdef LOCK_DEBUG + +# requires LOCK_DEBUG #trace_locks = false #trace_userlocks = false #trace_lwlocks = false #debug_deadlocks = false #trace_lock_oidmin = 16384 #trace_lock_table = 0 -#endif # |