mirror of https://github.com/citusdata/citus.git
dnm
parent
ca16f616dd
commit
6fb2387d29
|
@ -62,7 +62,7 @@ int StatStatementsPurgeInterval = 10;
|
||||||
int StatStatementsMax = 50000;
|
int StatStatementsMax = 50000;
|
||||||
|
|
||||||
/* tracking all or none, for citus_stat_statements, controlled by GUC citus.stat_statements_track */
|
/* 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
|
* 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 "
|
"Disables when set to 'none'. Disabling can be useful for "
|
||||||
"avoiding extra CPU cycles needed for the calculations."),
|
"avoiding extra CPU cycles needed for the calculations."),
|
||||||
&StatStatementsTrack,
|
&StatStatementsTrack,
|
||||||
STAT_STATEMENTS_TRACK_NONE,
|
STAT_STATEMENTS_TRACK_ALL,
|
||||||
stat_statements_track_options,
|
stat_statements_track_options,
|
||||||
PGC_SUSET,
|
PGC_SUSET,
|
||||||
GUC_STANDARD,
|
GUC_STANDARD,
|
||||||
|
|
Loading…
Reference in New Issue