From ab6d9f16414af946083fab2347c8ccc4761fc004 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 8b98e42e33c..3d7d13c0c10 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 }