From ffeca98cec9671c55a0693de30b50f839c0732be Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Fri, 8 Oct 2010 22:59:48 -0400 Subject: [PATCH] Adjust EXPLAIN documentation, so that it's not unreasonably wide. The new formatting matches what we do for COPY. Per a complaint from Bruce Momjian. --- doc/src/sgml/ref/explain.sgml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/explain.sgml b/doc/src/sgml/ref/explain.sgml index f31969b81b1..439f5e23fcb 100644 --- a/doc/src/sgml/ref/explain.sgml +++ b/doc/src/sgml/ref/explain.sgml @@ -31,8 +31,16 @@ PostgreSQL documentation -EXPLAIN [ ( { ANALYZE boolean | VERBOSE boolean | COSTS boolean | BUFFERS boolean | FORMAT { TEXT | XML | JSON | YAML } } [, ...] ) ] statement +EXPLAIN [ ( option [, ...] ) ] statement EXPLAIN [ ANALYZE ] [ VERBOSE ] statement + +where option can be one of: + + ANALYZE [ boolean ] + VERBOSE [ boolean ] + COSTS [ boolean ] + BUFFERS [ boolean ] + FORMAT { TEXT | XML | JSON | YAML } -- 2.39.5