diff options
author | Peter Eisentraut | 2017-10-09 02:00:57 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-10-10 14:15:57 +0000 |
commit | 44b3230e821e7a0cc4e9438d1c27305d533edacc (patch) | |
tree | 9ef61b597794c0aedaa099223a0c5aed0a5c2571 /doc/src/sgml/ref/vacuum.sgml | |
parent | 82c117cb90e6b6b79f06d61eb1ddf06e94e75b60 (diff) |
Use lower-case SGML attribute values
for DocBook XML compatibility
Diffstat (limited to 'doc/src/sgml/ref/vacuum.sgml')
-rw-r--r-- | doc/src/sgml/ref/vacuum.sgml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml index e712226c61c..f5bc87e2903 100644 --- a/doc/src/sgml/ref/vacuum.sgml +++ b/doc/src/sgml/ref/vacuum.sgml @@ -21,10 +21,10 @@ PostgreSQL documentation <refsynopsisdiv> <synopsis> -VACUUM [ ( <replaceable class="PARAMETER">option</replaceable> [, ...] ) ] [ <replaceable class="PARAMETER">table_and_columns</replaceable> [, ...] ] -VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="PARAMETER">table_and_columns</replaceable> [, ...] ] +VACUUM [ ( <replaceable class="parameter">option</replaceable> [, ...] ) ] [ <replaceable class="parameter">table_and_columns</replaceable> [, ...] ] +VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="parameter">table_and_columns</replaceable> [, ...] ] -<phrase>where <replaceable class="PARAMETER">option</replaceable> can be one of:</phrase> +<phrase>where <replaceable class="parameter">option</replaceable> can be one of:</phrase> FULL FREEZE @@ -32,9 +32,9 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="PARAMET ANALYZE DISABLE_PAGE_SKIPPING -<phrase>and <replaceable class="PARAMETER">table_and_columns</replaceable> is:</phrase> +<phrase>and <replaceable class="parameter">table_and_columns</replaceable> is:</phrase> - <replaceable class="PARAMETER">table_name</replaceable> [ ( <replaceable class="PARAMETER">column_name</replaceable> [, ...] ) ] + <replaceable class="parameter">table_name</replaceable> [ ( <replaceable class="parameter">column_name</replaceable> [, ...] ) ] </synopsis> </refsynopsisdiv> @@ -51,7 +51,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="PARAMET </para> <para> - Without a <replaceable class="PARAMETER">table_and_columns</replaceable> + Without a <replaceable class="parameter">table_and_columns</replaceable> list, <command>VACUUM</command> processes every table and materialized view in the current database that the current user has permission to vacuum. With a list, <command>VACUUM</command> processes only those table(s). @@ -161,7 +161,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="PARAMET </varlistentry> <varlistentry> - <term><replaceable class="PARAMETER">table_name</replaceable></term> + <term><replaceable class="parameter">table_name</replaceable></term> <listitem> <para> The name (optionally schema-qualified) of a specific table or @@ -172,7 +172,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="PARAMET </varlistentry> <varlistentry> - <term><replaceable class="PARAMETER">column_name</replaceable></term> + <term><replaceable class="parameter">column_name</replaceable></term> <listitem> <para> The name of a specific column to analyze. Defaults to all columns. |