summaryrefslogtreecommitdiff
path: root/doc/src/sgml/tsm-system-time.sgml
diff options
context:
space:
mode:
authorPeter Eisentraut2017-10-09 01:44:17 +0000
committerPeter Eisentraut2017-10-17 19:10:33 +0000
commitc29c578908dc0271eeb13a4014e54bff07a29c05 (patch)
tree1aa03fb6f1864719f2f23d4b0b9d5e2865764082 /doc/src/sgml/tsm-system-time.sgml
parent6ecabead4b5993c42745f2802d857b1a79f48bf9 (diff)
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
Diffstat (limited to 'doc/src/sgml/tsm-system-time.sgml')
-rw-r--r--doc/src/sgml/tsm-system-time.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/tsm-system-time.sgml b/doc/src/sgml/tsm-system-time.sgml
index 3f8ff1a026f..525292bb7c5 100644
--- a/doc/src/sgml/tsm-system-time.sgml
+++ b/doc/src/sgml/tsm-system-time.sgml
@@ -8,9 +8,9 @@
</indexterm>
<para>
- The <filename>tsm_system_time</> module provides the table sampling method
+ The <filename>tsm_system_time</filename> module provides the table sampling method
<literal>SYSTEM_TIME</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>
@@ -40,7 +40,7 @@
<para>
Here is an example of selecting a sample of a table with
- <literal>SYSTEM_TIME</>. First install the extension:
+ <literal>SYSTEM_TIME</literal>. First install the extension:
</para>
<programlisting>
@@ -56,7 +56,7 @@ SELECT * FROM my_table TABLESAMPLE SYSTEM_TIME(1000);
</para>
<para>
- This command will return as large a sample of <structname>my_table</> as
+ This command will return as large a sample of <structname>my_table</structname> as
it can read in 1 second (1000 milliseconds). Of course, if the whole
table can be read in under 1 second, all its rows will be returned.
</para>