diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-05-19 22:03:32 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-05-19 22:03:32 -0400 |
commit | 2af0971f35a4a7b87312b83782d9bb0cc6a40ad0 (patch) | |
tree | 2751f7dd7009680db9b3c923cce26d3379467e1b /src/backend/commands/explain.c | |
parent | d4337a0dcbd29e5b11c2157f808916de62de05e4 (diff) | |
download | postgresql-2af0971f35a4a7b87312b83782d9bb0cc6a40ad0.tar.gz postgresql-2af0971f35a4a7b87312b83782d9bb0cc6a40ad0.zip |
Clarify documentation of EXPLAIN (TIMING OFF) option.
Clarify that this option doesn't suppress measurement of the statement's
total runtime.
Greg Smith
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r-- | src/backend/commands/explain.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c index 38ce0efe031..c6398e3c8e7 100644 --- a/src/backend/commands/explain.c +++ b/src/backend/commands/explain.c @@ -414,6 +414,10 @@ ExplainOnePlan(PlannedStmt *plannedstmt, IntoClause *into, ExplainState *es, if (es->buffers) instrument_option |= INSTRUMENT_BUFFERS; + /* + * We always collect timing for the entire statement, even when + * node-level timing is off, so we don't look at es->timing here. + */ INSTR_TIME_SET_CURRENT(starttime); /* |