1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-28 18:48:04 +03:00

Don't use SGML empty tags

For DocBook XML compatibility, don't use SGML empty tags (</>) anymore,
replace by the full tag name.  Add a warning option to catch future
occurrences.

Alexander Lakhin, Jürgen Purtz
This commit is contained in:
Peter Eisentraut
2017-10-08 21:44:17 -04:00
parent 6ecabead4b
commit c29c578908
337 changed files with 31636 additions and 31635 deletions

View File

@@ -45,9 +45,9 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<para>
A user with appropriate privileges can pass
<replaceable class="parameter">tablespace_name</> to
<command>CREATE DATABASE</>, <command>CREATE TABLE</>,
<command>CREATE INDEX</> or <command>ADD CONSTRAINT</> to have the data
<replaceable class="parameter">tablespace_name</replaceable> to
<command>CREATE DATABASE</command>, <command>CREATE TABLE</command>,
<command>CREATE INDEX</command> or <command>ADD CONSTRAINT</command> to have the data
files for these objects stored within the specified tablespace.
</para>
@@ -93,7 +93,7 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<para>
The directory that will be used for the tablespace. The directory
should be empty and must be owned by the
<productname>PostgreSQL</> system user. The directory must be
<productname>PostgreSQL</productname> system user. The directory must be
specified by an absolute path name.
</para>
</listitem>
@@ -104,8 +104,8 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<listitem>
<para>
A tablespace parameter to be set or reset. Currently, the only
available parameters are <varname>seq_page_cost</>,
<varname>random_page_cost</> and <varname>effective_io_concurrency</>.
available parameters are <varname>seq_page_cost</varname>,
<varname>random_page_cost</varname> and <varname>effective_io_concurrency</varname>.
Setting either value for a particular tablespace will override the
planner's usual estimate of the cost of reading pages from tables in
that tablespace, as established by the configuration parameters of the
@@ -128,7 +128,7 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
</para>
<para>
<command>CREATE TABLESPACE</> cannot be executed inside a transaction
<command>CREATE TABLESPACE</command> cannot be executed inside a transaction
block.
</para>
</refsect1>
@@ -137,15 +137,15 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<title>Examples</title>
<para>
Create a tablespace <literal>dbspace</> at <literal>/data/dbs</>:
Create a tablespace <literal>dbspace</literal> at <literal>/data/dbs</literal>:
<programlisting>
CREATE TABLESPACE dbspace LOCATION '/data/dbs';
</programlisting>
</para>
<para>
Create a tablespace <literal>indexspace</> at <literal>/data/indexes</>
owned by user <literal>genevieve</>:
Create a tablespace <literal>indexspace</literal> at <literal>/data/indexes</literal>
owned by user <literal>genevieve</literal>:
<programlisting>
CREATE TABLESPACE indexspace OWNER genevieve LOCATION '/data/indexes';
</programlisting></para>
@@ -155,7 +155,7 @@ CREATE TABLESPACE indexspace OWNER genevieve LOCATION '/data/indexes';
<title>Compatibility</title>
<para>
<command>CREATE TABLESPACE</command> is a <productname>PostgreSQL</>
<command>CREATE TABLESPACE</command> is a <productname>PostgreSQL</productname>
extension.
</para>
</refsect1>