~aglenyoung/+junk/postgres-9.3-dtrace

« back to all changes in this revision

Viewing changes to doc/src/sgml/ref/explain.sgml

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Christoph Berg, Martin Pitt
  • Date: 2013-06-26 15:13:32 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130626151332-p34yjpn0txbdsdzd
Tags: 9.3~beta2-1
[ Christoph Berg ]
* hurd-i386: Ignore testsuite failures so we have a working libpq5 (they
  don't implement semaphores so the server won't even start).
* Mark postgresql-9.3 as beta in the description, suggested by Joshua D.
  Drake.

[ Martin Pitt ]
* New upstream release 9.3 beta2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
  <para>
77
77
   The <literal>ANALYZE</literal> option causes the statement to be actually
78
 
   executed, not only planned.  Then actual runtime statistics are added to
 
78
   executed, not only planned.  Then actual run time statistics are added to
79
79
   the display, including the total elapsed time expended within each plan
80
80
   node (in milliseconds) and the total number of rows it actually returned.
81
81
   This is useful for seeing whether the planner's estimates
182
182
    <term><literal>TIMING</literal></term>
183
183
    <listitem>
184
184
     <para>
185
 
      Include the actual startup time and time spent in the node in the output.
 
185
      Include actual startup time and time spent in each node in the output.
186
186
      The overhead of repeatedly reading the system clock can slow down the
187
187
      query significantly on some systems, so it may be useful to set this
188
 
      parameter to <literal>FALSE</literal> when only actual row counts, and not
189
 
      exact times, are needed.
 
188
      parameter to <literal>FALSE</literal> when only actual row counts, and
 
189
      not exact times, are needed.  Run time of the entire statement is
 
190
      always measured, even when node-level timing is turned off with this
 
191
      option.
190
192
      This parameter may only be used when <literal>ANALYZE</literal> is also
191
193
      enabled.  It defaults to <literal>TRUE</literal>.
192
194
     </para>