From: Tom Lane Date: Thu, 4 Feb 2016 18:58:40 +0000 (-0500) Subject: Simplify syntax diagram for REINDEX. X-Git-Tag: REL9_6_BETA1~770 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ef244a28266ce8e5666b23baed33a4c238542ff;p=postgresql Simplify syntax diagram for REINDEX. Since there currently is only one possible parenthesized option, namely VERBOSE, it's a bit pointless to show it with "{ } [, ... ]". The curly braces are useless and therefore confusing, as seen in a recent question from Karsten Hilbert. Remove the extra decoration for the time being; we can put it back when and if REINDEX grows some more options. --- diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml index 703b7609cf..3908ade37b 100644 --- a/doc/src/sgml/ref/reindex.sgml +++ b/doc/src/sgml/ref/reindex.sgml @@ -21,7 +21,7 @@ PostgreSQL documentation -REINDEX [ ( { VERBOSE } [, ...] ) ] { INDEX | TABLE | SCHEMA | DATABASE | SYSTEM } name +REINDEX [ ( VERBOSE ) ] { INDEX | TABLE | SCHEMA | DATABASE | SYSTEM } name