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:
@@ -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>
|
||||
|
Reference in New Issue
Block a user