From: Robert Haas Date: Sat, 9 Oct 2010 02:59:48 +0000 (-0400) Subject: Adjust EXPLAIN documentation, so that it's not unreasonably wide. X-Git-Tag: REL9_0_2~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffeca98cec9671c55a0693de30b50f839c0732be;p=thirdparty%2Fpostgresql.git 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. --- 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 }