From 87a2f050a9b53b3effe0a4da9733b5dba784463d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 18 Apr 2008 01:42:17 +0000 Subject: 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. --- doc/src/sgml/config.sgml | 16 +--------------- doc/src/sgml/ref/explain.sgml | 9 ++------- 2 files changed, 3 insertions(+), 22 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index fa8ce23a46c..8658f493d5b 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ - + Server Configuration @@ -4187,20 +4187,6 @@ SET XML OPTION { DOCUMENT | CONTENT }; - - explain_pretty_print (boolean) - - explain_pretty_print configuration parameter - - - - Determines whether EXPLAIN VERBOSE uses the - indented or non-indented format for displaying detailed - query-tree dumps. The default is on. - - - - dynamic_library_path (string) 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 @@ @@ -106,12 +106,7 @@ ROLLBACK; VERBOSE - 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 - VERBOSE output is either pretty-printed or - not, depending on the setting of the configuration parameter. + Include the output column list for each node in the plan tree. -- cgit v1.2.3