diff options
Diffstat (limited to 'src/backend/utils/misc')
-rw-r--r-- | src/backend/utils/misc/guc.c | 15 | ||||
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 9 |
2 files changed, 15 insertions, 9 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 6000493a853..e07421a87cf 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -5,7 +5,7 @@ * command, configuration file, and command line options. * See src/backend/utils/misc/README for more information. * - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.89 2002/08/30 22:18:07 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.90 2002/09/01 23:26:06 momjian Exp $ * * Copyright 2000 by PostgreSQL Global Development Group * Written by Peter Eisentraut <peter_e@gmx.net>. @@ -77,7 +77,8 @@ static const char *assign_facility(const char *facility, #ifdef USE_ASSERT_CHECKING bool assert_enabled = true; #endif -bool Debug_print_query = false; +bool Log_statement = false; +bool Log_duration = false; bool Debug_print_plan = false; bool Debug_print_parse = false; bool Debug_print_rewritten = false; @@ -86,7 +87,7 @@ bool Debug_pretty_print = false; bool Show_parser_stats = false; bool Show_planner_stats = false; bool Show_executor_stats = false; -bool Show_query_stats = false; /* this is sort of all three above +bool Show_statement_stats = false; /* this is sort of all three above * together */ bool Show_btree_build_stats = false; @@ -362,7 +363,11 @@ static struct config_bool #endif { - { "debug_print_query", PGC_USERSET }, &Debug_print_query, + { "log_statement", PGC_USERSET }, &Log_statement, + false, NULL, NULL + }, + { + { "log_duration", PGC_USERSET }, &Log_duration, false, NULL, NULL }, { @@ -395,7 +400,7 @@ static struct config_bool false, NULL, NULL }, { - { "show_query_stats", PGC_USERSET }, &Show_query_stats, + { "show_statement_stats", PGC_USERSET }, &Show_statement_stats, false, NULL, NULL }, #ifdef BTREE_BUILD_STATS diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 1141e3c6042..3bcf77c52ce 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -102,7 +102,7 @@ #geqo = true #geqo_selection_bias = 2.0 # range 1.5-2.0 #geqo_threshold = 11 -#geqo_pool_size = 0 # default based on tables in query, +#geqo_pool_size = 0 # default based on tables in statement, # range 128-1024 #geqo_effort = 1 #geqo_generations = 0 @@ -122,10 +122,11 @@ #silent_mode = false #log_connections = false -#log_timestamp = false #log_pid = false +#log_statement = false +#log_duration = false +#log_timestamp = false -#debug_print_query = false #debug_print_parse = false #debug_print_rewritten = false #debug_print_plan = false @@ -151,7 +152,7 @@ #show_parser_stats = false #show_planner_stats = false #show_executor_stats = false -#show_query_stats = false +#show_statement_stats = false # requires BTREE_BUILD_STATS #show_btree_build_stats = false |