summaryrefslogtreecommitdiff
path: root/doc/src/sgml/btree-gist.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/btree-gist.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/btree-gist.sgml')
-rw-r--r--doc/src/sgml/btree-gist.sgml32
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/src/sgml/btree-gist.sgml b/doc/src/sgml/btree-gist.sgml
index f3c639c2f3b..dcb939f1fbf 100644
--- a/doc/src/sgml/btree-gist.sgml
+++ b/doc/src/sgml/btree-gist.sgml
@@ -8,16 +8,16 @@
</indexterm>
<para>
- <filename>btree_gist</> provides GiST index operator classes that
+ <filename>btree_gist</filename> provides GiST index operator classes that
implement B-tree equivalent behavior for the data types
- <type>int2</>, <type>int4</>, <type>int8</>, <type>float4</>,
- <type>float8</>, <type>numeric</>, <type>timestamp with time zone</>,
- <type>timestamp without time zone</>, <type>time with time zone</>,
- <type>time without time zone</>, <type>date</>, <type>interval</>,
- <type>oid</>, <type>money</>, <type>char</>,
- <type>varchar</>, <type>text</>, <type>bytea</>, <type>bit</>,
- <type>varbit</>, <type>macaddr</>, <type>macaddr8</>, <type>inet</>,
- <type>cidr</>, <type>uuid</>, and all <type>enum</> types.
+ <type>int2</type>, <type>int4</type>, <type>int8</type>, <type>float4</type>,
+ <type>float8</type>, <type>numeric</type>, <type>timestamp with time zone</type>,
+ <type>timestamp without time zone</type>, <type>time with time zone</type>,
+ <type>time without time zone</type>, <type>date</type>, <type>interval</type>,
+ <type>oid</type>, <type>money</type>, <type>char</type>,
+ <type>varchar</type>, <type>text</type>, <type>bytea</type>, <type>bit</type>,
+ <type>varbit</type>, <type>macaddr</type>, <type>macaddr8</type>, <type>inet</type>,
+ <type>cidr</type>, <type>uuid</type>, and all <type>enum</type> types.
</para>
<para>
@@ -33,7 +33,7 @@
</para>
<para>
- In addition to the typical B-tree search operators, <filename>btree_gist</>
+ In addition to the typical B-tree search operators, <filename>btree_gist</filename>
also provides index support for <literal>&lt;&gt;</literal> (<quote>not
equals</quote>). This may be useful in combination with an
<link linkend="SQL-CREATETABLE-EXCLUDE">exclusion constraint</link>,
@@ -42,14 +42,14 @@
<para>
Also, for data types for which there is a natural distance metric,
- <filename>btree_gist</> defines a distance operator <literal>&lt;-&gt;</>,
+ <filename>btree_gist</filename> defines a distance operator <literal>&lt;-&gt;</literal>,
and provides GiST index support for nearest-neighbor searches using
this operator. Distance operators are provided for
- <type>int2</>, <type>int4</>, <type>int8</>, <type>float4</>,
- <type>float8</>, <type>timestamp with time zone</>,
- <type>timestamp without time zone</>,
- <type>time without time zone</>, <type>date</>, <type>interval</>,
- <type>oid</>, and <type>money</>.
+ <type>int2</type>, <type>int4</type>, <type>int8</type>, <type>float4</type>,
+ <type>float8</type>, <type>timestamp with time zone</type>,
+ <type>timestamp without time zone</type>,
+ <type>time without time zone</type>, <type>date</type>, <type>interval</type>,
+ <type>oid</type>, and <type>money</type>.
</para>
<sect2>