diff options
Diffstat (limited to 'doc/src/sgml/xindex.sgml')
-rw-r--r-- | doc/src/sgml/xindex.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/xindex.sgml b/doc/src/sgml/xindex.sgml index ca655304f5..3e608941ab 100644 --- a/doc/src/sgml/xindex.sgml +++ b/doc/src/sgml/xindex.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/xindex.sgml,v 1.36 2003/11/29 19:51:38 pgsql Exp $ +$PostgreSQL: pgsql/doc/src/sgml/xindex.sgml,v 1.37 2004/11/15 06:32:14 neilc Exp $ --> <sect1 id="xindex"> @@ -42,7 +42,7 @@ $PostgreSQL: pgsql/doc/src/sgml/xindex.sgml,v 1.36 2003/11/29 19:51:38 pgsql Exp <productname>PostgreSQL</productname>, but all index methods are described in <classname>pg_am</classname>. It is possible to add a new index method by defining the required interface routines and - then creating a row in <classname>pg_am</classname> --- but that is + then creating a row in <classname>pg_am</classname> — but that is far beyond the scope of this chapter. </para> @@ -745,7 +745,7 @@ SELECT * FROM table WHERE integer_column < 4; Consider again the situation where we are storing in the index only the bounding box of a complex object such as a polygon. In this case there's not much value in storing the whole polygon in the index - entry --- we may as well store just a simpler object of type + entry — we may as well store just a simpler object of type <type>box</>. This situation is expressed by the <literal>STORAGE</> option in <command>CREATE OPERATOR CLASS</>: we'd write something like |