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 /src/include/utils/guc.h | |
| 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 'src/include/utils/guc.h')
| -rw-r--r-- | src/include/utils/guc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index b0fb369f85..b6103550ad 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -7,7 +7,7 @@ * Copyright (c) 2000-2008, PostgreSQL Global Development Group * Written by Peter Eisentraut <peter_e@gmx.net>. * - * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.93 2008/04/02 14:42:56 mha Exp $ + * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.94 2008/04/18 01:42:17 tgl Exp $ *-------------------------------------------------------------------- */ #ifndef GUC_H @@ -127,7 +127,6 @@ extern bool Debug_print_plan; extern bool Debug_print_parse; extern bool Debug_print_rewritten; extern bool Debug_pretty_print; -extern bool Explain_pretty_print; extern bool log_parser_stats; extern bool log_planner_stats; |
