Index: src/backend/utils/misc/guc.c =================================================================== RCS file: /cvsroot/pgsql-server/src/backend/utils/misc/guc.c,v retrieving revision 1.124 diff -c -c -r1.124 guc.c *** src/backend/utils/misc/guc.c 14 May 2003 03:26:02 -0000 1.124 --- src/backend/utils/misc/guc.c 27 May 2003 02:30:16 -0000 *************** *** 394,443 **** #ifdef USE_ASSERT_CHECKING { ! {"debug_assertions", PGC_USERSET}, &assert_enabled, true, NULL, NULL }, #endif { ! {"log_statement", PGC_USERSET}, &log_statement, false, NULL, NULL }, { ! {"log_duration", PGC_USERSET}, &log_duration, false, NULL, NULL }, { ! {"debug_print_parse", PGC_USERSET}, &Debug_print_parse, false, NULL, NULL }, { ! {"debug_print_rewritten", PGC_USERSET}, &Debug_print_rewritten, false, NULL, NULL }, { ! {"debug_print_plan", PGC_USERSET}, &Debug_print_plan, false, NULL, NULL }, { ! {"debug_pretty_print", PGC_USERSET}, &Debug_pretty_print, false, NULL, NULL }, { ! {"log_parser_stats", PGC_USERSET}, &log_parser_stats, false, NULL, NULL }, { ! {"log_planner_stats", PGC_USERSET}, &log_planner_stats, false, NULL, NULL }, { ! {"log_executor_stats", PGC_USERSET}, &log_executor_stats, false, NULL, NULL }, { ! {"log_statement_stats", PGC_USERSET}, &log_statement_stats, false, NULL, NULL }, #ifdef BTREE_BUILD_STATS --- 394,443 ---- #ifdef USE_ASSERT_CHECKING { ! {"debug_assertions", PGC_SUSET}, &assert_enabled, true, NULL, NULL }, #endif { ! {"log_statement", PGC_SUSET}, &log_statement, false, NULL, NULL }, { ! {"log_duration", PGC_SUSET}, &log_duration, false, NULL, NULL }, { ! {"debug_print_parse", PGC_SUSET}, &Debug_print_parse, false, NULL, NULL }, { ! {"debug_print_rewritten", PGC_SUSET}, &Debug_print_rewritten, false, NULL, NULL }, { ! {"debug_print_plan", PGC_SUSET}, &Debug_print_plan, false, NULL, NULL }, { ! {"debug_pretty_print", PGC_SUSET}, &Debug_pretty_print, false, NULL, NULL }, { ! {"log_parser_stats", PGC_SUSET}, &log_parser_stats, false, NULL, NULL }, { ! {"log_planner_stats", PGC_SUSET}, &log_planner_stats, false, NULL, NULL }, { ! {"log_executor_stats", PGC_SUSET}, &log_executor_stats, false, NULL, NULL }, { ! {"log_statement_stats", PGC_SUSET}, &log_statement_stats, false, NULL, NULL }, #ifdef BTREE_BUILD_STATS *************** *** 474,480 **** }, { ! {"trace_notify", PGC_USERSET}, &Trace_notify, false, NULL, NULL }, --- 474,480 ---- }, { ! {"trace_notify", PGC_SUSET}, &Trace_notify, false, NULL, NULL }, *************** *** 791,797 **** }, { ! {"log_min_error_statement", PGC_USERSET}, &log_min_error_statement_str, "panic", assign_min_error_statement, NULL }, --- 791,797 ---- }, { ! {"log_min_error_statement", PGC_SUSET}, &log_min_error_statement_str, "panic", assign_min_error_statement, NULL }, *************** *** 878,884 **** }, { ! {"log_min_messages", PGC_USERSET}, &log_min_messages_str, "notice", assign_log_min_messages, NULL }, --- 878,884 ---- }, { ! {"log_min_messages", PGC_SUSET}, &log_min_messages_str, "notice", assign_log_min_messages, NULL },