summaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-04-18 01:42:17 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-04-18 01:42:17 +0000
commit87a2f050a9b53b3effe0a4da9733b5dba784463d (patch)
tree5a1aa867819cca291da2a70ee4f4e8695a0cebec /doc/src/sgml/ref
parent2f0f7b4bce13e68394543728801ef011fd82fac6 (diff)
Cause EXPLAIN's VERBOSE option to print the target list (output column list)
of each plan node, instead of its former behavior of dumping the internal representation of the plan tree. The latter display is still available for those who really want it (see debug_print_plan), but uses for it are certainly few and and far between. Per discussion. This patch also removes the explain_pretty_print GUC, which is obsoleted by the change.
Diffstat (limited to 'doc/src/sgml/ref')
-rw-r--r--doc/src/sgml/ref/explain.sgml9
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/explain.sgml b/doc/src/sgml/ref/explain.sgml
index 89fb0274cac..73cea6b00fa 100644
--- a/doc/src/sgml/ref/explain.sgml
+++ b/doc/src/sgml/ref/explain.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/ref/explain.sgml,v 1.41 2007/11/28 15:42:31 petere Exp $
+$PostgreSQL: pgsql/doc/src/sgml/ref/explain.sgml,v 1.42 2008/04/18 01:42:17 tgl Exp $
PostgreSQL documentation
-->
@@ -106,12 +106,7 @@ ROLLBACK;
<term><literal>VERBOSE</literal></term>
<listitem>
<para>
- Show the full internal representation of the plan tree, rather
- than just a summary. Usually this option is only useful for
- specialized debugging purposes. The
- <literal>VERBOSE</literal> output is either pretty-printed or
- not, depending on the setting of the <xref
- linkend="guc-explain-pretty-print"> configuration parameter.
+ Include the output column list for each node in the plan tree.
</para>
</listitem>
</varlistentry>