diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-04-18 01:42:17 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-04-18 01:42:17 +0000 |
| commit | 87a2f050a9b53b3effe0a4da9733b5dba784463d (patch) | |
| tree | 5a1aa867819cca291da2a70ee4f4e8695a0cebec /doc/src/sgml/config.sgml | |
| parent | 2f0f7b4bce13e68394543728801ef011fd82fac6 (diff) | |
| download | postgresql-87a2f050a9b53b3effe0a4da9733b5dba784463d.tar.gz | |
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/config.sgml')
| -rw-r--r-- | doc/src/sgml/config.sgml | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index fa8ce23a46..8658f493d5 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.174 2008/03/30 04:08:14 neilc Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.175 2008/04/18 01:42:17 tgl Exp $ --> <chapter Id="runtime-config"> <title>Server Configuration</title> @@ -4187,20 +4187,6 @@ SET XML OPTION { DOCUMENT | CONTENT }; <variablelist> - <varlistentry id="guc-explain-pretty-print" xreflabel="explain_pretty_print"> - <term><varname>explain_pretty_print</varname> (<type>boolean</type>)</term> - <indexterm> - <primary><varname>explain_pretty_print</> configuration parameter</primary> - </indexterm> - <listitem> - <para> - Determines whether <command>EXPLAIN VERBOSE</> uses the - indented or non-indented format for displaying detailed - query-tree dumps. The default is <literal>on</>. - </para> - </listitem> - </varlistentry> - <varlistentry id="guc-dynamic-library-path" xreflabel="dynamic_library_path"> <term><varname>dynamic_library_path</varname> (<type>string</type>)</term> <indexterm> |
