1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +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

@@ -8,9 +8,9 @@
</indexterm>
<para>
The <filename>tsm_system_rows</> module provides the table sampling method
The <filename>tsm_system_rows</filename> module provides the table sampling method
<literal>SYSTEM_ROWS</literal>, which can be used in
the <literal>TABLESAMPLE</> clause of a <xref linkend="sql-select">
the <literal>TABLESAMPLE</literal> clause of a <xref linkend="sql-select">
command.
</para>
@@ -38,7 +38,7 @@
<para>
Here is an example of selecting a sample of a table with
<literal>SYSTEM_ROWS</>. First install the extension:
<literal>SYSTEM_ROWS</literal>. First install the extension:
</para>
<programlisting>
@@ -55,7 +55,7 @@ SELECT * FROM my_table TABLESAMPLE SYSTEM_ROWS(100);
<para>
This command will return a sample of 100 rows from the
table <structname>my_table</> (unless the table does not have 100
table <structname>my_table</structname> (unless the table does not have 100
visible rows, in which case all its rows are returned).
</para>
</sect2>