mirror of https://github.com/citusdata/citus.git
dnm
parent
ca16f616dd
commit
6fb2387d29
|
@ -62,7 +62,7 @@ int StatStatementsPurgeInterval = 10;
|
|||
int StatStatementsMax = 50000;
|
||||
|
||||
/* tracking all or none, for citus_stat_statements, controlled by GUC citus.stat_statements_track */
|
||||
int StatStatementsTrack = STAT_STATEMENTS_TRACK_NONE;
|
||||
int StatStatementsTrack = STAT_STATEMENTS_TRACK_ALL;
|
||||
|
||||
/*
|
||||
* Hashtable key that defines the identity of a hashtable entry. We use the
|
||||
|
|
|
@ -2368,7 +2368,7 @@ RegisterCitusConfigVariables(void)
|
|||
"Disables when set to 'none'. Disabling can be useful for "
|
||||
"avoiding extra CPU cycles needed for the calculations."),
|
||||
&StatStatementsTrack,
|
||||
STAT_STATEMENTS_TRACK_NONE,
|
||||
STAT_STATEMENTS_TRACK_ALL,
|
||||
stat_statements_track_options,
|
||||
PGC_SUSET,
|
||||
GUC_STANDARD,
|
||||
|
|
Loading…
Reference in New Issue