Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
7a8d8748
Commit
7a8d8748
authored
9 years ago
by
Magnus Hagander
Browse files
Options
Downloads
Patches
Plain Diff
Rename auto_explain.sample_ratio to sample_rate
Per suggestion from Tomas Vondra Author: Julien Rouhaud
parent
a1aa8b7e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/auto_explain/auto_explain.c
+5
-5
5 additions, 5 deletions
contrib/auto_explain/auto_explain.c
doc/src/sgml/auto-explain.sgml
+6
-7
6 additions, 7 deletions
doc/src/sgml/auto-explain.sgml
with
11 additions
and
12 deletions
contrib/auto_explain/auto_explain.c
+
5
−
5
View file @
7a8d8748
...
@@ -29,7 +29,7 @@ static bool auto_explain_log_triggers = false;
...
@@ -29,7 +29,7 @@ static bool auto_explain_log_triggers = false;
static
bool
auto_explain_log_timing
=
true
;
static
bool
auto_explain_log_timing
=
true
;
static
int
auto_explain_log_format
=
EXPLAIN_FORMAT_TEXT
;
static
int
auto_explain_log_format
=
EXPLAIN_FORMAT_TEXT
;
static
bool
auto_explain_log_nested_statements
=
false
;
static
bool
auto_explain_log_nested_statements
=
false
;
static
double
auto_explain_sample_rat
io
=
1
;
static
double
auto_explain_sample_rat
e
=
1
;
static
const
struct
config_enum_entry
format_options
[]
=
{
static
const
struct
config_enum_entry
format_options
[]
=
{
{
"text"
,
EXPLAIN_FORMAT_TEXT
,
false
},
{
"text"
,
EXPLAIN_FORMAT_TEXT
,
false
},
...
@@ -163,10 +163,10 @@ _PG_init(void)
...
@@ -163,10 +163,10 @@ _PG_init(void)
NULL
,
NULL
,
NULL
);
NULL
);
DefineCustomRealVariable
(
"auto_explain.sample_rat
io
"
,
DefineCustomRealVariable
(
"auto_explain.sample_rat
e
"
,
"Fraction of queries to process."
,
"Fraction of queries to process."
,
NULL
,
NULL
,
&
auto_explain_sample_rat
io
,
&
auto_explain_sample_rat
e
,
1
.
0
,
1
.
0
,
0
.
0
,
0
.
0
,
1
.
0
,
1
.
0
,
...
@@ -209,11 +209,11 @@ static void
...
@@ -209,11 +209,11 @@ static void
explain_ExecutorStart
(
QueryDesc
*
queryDesc
,
int
eflags
)
explain_ExecutorStart
(
QueryDesc
*
queryDesc
,
int
eflags
)
{
{
/*
/*
* For rat
io
sampling, randomly choose top-level statement. Either
* For rat
e
sampling, randomly choose top-level statement. Either
* all nested statements will be explained or none will.
* all nested statements will be explained or none will.
*/
*/
if
(
auto_explain_log_min_duration
>=
0
&&
nesting_level
==
0
)
if
(
auto_explain_log_min_duration
>=
0
&&
nesting_level
==
0
)
current_query_sampled
=
(
random
()
<
auto_explain_sample_rat
io
*
current_query_sampled
=
(
random
()
<
auto_explain_sample_rat
e
*
MAX_RANDOM_VALUE
);
MAX_RANDOM_VALUE
);
if
(
auto_explain_enabled
()
&&
current_query_sampled
)
if
(
auto_explain_enabled
()
&&
current_query_sampled
)
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/auto-explain.sgml
+
6
−
7
View file @
7a8d8748
...
@@ -206,18 +206,17 @@ LOAD 'auto_explain';
...
@@ -206,18 +206,17 @@ LOAD 'auto_explain';
<varlistentry>
<varlistentry>
<term>
<term>
<varname>auto_explain.sample_rat
io
</varname> (<type>real</type>)
<varname>auto_explain.sample_rat
e
</varname> (<type>real</type>)
<indexterm>
<indexterm>
<primary><varname>auto_explain.sample_rat
io
</> configuration parameter</primary>
<primary><varname>auto_explain.sample_rat
e
</> configuration parameter</primary>
</indexterm>
</indexterm>
</term>
</term>
<listitem>
<listitem>
<para>
<para>
<varname>auto_explain.sample_ratio</varname> (<type>floating point</type>)
<varname>auto_explain.sample_rate</varname> causes auto_explain to only
causes auto_explain to only explain a fraction of the statements in each
explain a fraction of the statements in each session. The default is 1,
session. The default is 1, meaning explain all the queries. In case
meaning explain all the queries. In case of nested statements, either all
of nested statements, either all will be explained or none. Only
will be explained or none. Only superusers can change this setting.
superusers can change this setting.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment