diff options
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r-- | src/backend/utils/misc/guc.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 96dc8399e1c..cc666047815 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -4,7 +4,7 @@ * Support for grand unified configuration scheme, including SET * command, configuration file, and command line options. * - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.44 2001/06/30 22:03:26 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.45 2001/07/05 15:19:40 wieck Exp $ * * Copyright 2000 by PostgreSQL Global Development Group * Written by Peter Eisentraut <peter_e@gmx.net>. @@ -36,6 +36,7 @@ #include "storage/proc.h" #include "tcop/tcopprot.h" #include "utils/datetime.h" +#include "pgstat.h" /* XXX these should be in other modules' header files */ @@ -225,6 +226,12 @@ static struct config_bool {"show_btree_build_stats", PGC_SUSET, &Show_btree_build_stats, false, NULL}, #endif + {"collect_startcollector", PGC_POSTMASTER, &pgstat_collect_startcollector, true, NULL}, + {"collect_resetonpmstart", PGC_POSTMASTER, &pgstat_collect_resetonpmstart, true, NULL}, + {"collect_querystring", PGC_SUSET, &pgstat_collect_querystring, false, NULL}, + {"collect_tuplelevel", PGC_SUSET, &pgstat_collect_tuplelevel, false, NULL}, + {"collect_blocklevel", PGC_SUSET, &pgstat_collect_blocklevel, false, NULL}, + {"trace_notify", PGC_USERSET, &Trace_notify, false, NULL}, #ifdef LOCK_DEBUG |