Commit 52e6371e authored by Tom Lane's avatar Tom Lane

Be more clear about when to use gist__int_ops vs. gist__intbig_ops.

Per suggestion from Ron Mayer.
parent 47ce5955
<!-- $PostgreSQL: pgsql/doc/src/sgml/intarray.sgml,v 1.5 2007/12/10 05:32:51 tgl Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/intarray.sgml,v 1.6 2009/03/18 20:18:18 tgl Exp $ -->
<sect1 id="intarray"> <sect1 id="intarray">
<title>intarray</title> <title>intarray</title>
...@@ -237,9 +237,10 @@ ...@@ -237,9 +237,10 @@
<para> <para>
Two GiST index operator classes are provided: Two GiST index operator classes are provided:
<literal>gist__int_ops</> (used by default) is suitable for <literal>gist__int_ops</> (used by default) is suitable for
small and medium-size arrays, while small- to medium-size data sets, while
<literal>gist__intbig_ops</> uses a larger signature and is more <literal>gist__intbig_ops</> uses a larger signature and is more
suitable for indexing large arrays. suitable for indexing large data sets (i.e., columns containing
a large number of distinct array values).
</para> </para>
<para> <para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment