doc: mention "bloom" as a possible index access method
Also remove USING erroneously added recently. Reported-by: Jeff Janes Discussion: https://postgr.es/m/CAMkU=1zhCpC7hottyMWM5Pimr9vRLprSwzLg+7PgajWhKZqRzw@mail.gmail.com Backpatch-through: 10
This commit is contained in:
parent
4ea07e7cf3
commit
dd03dfeb3b
@ -117,7 +117,8 @@ CREATE INDEX test1_id_index ON test1 (id);
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
<productname>PostgreSQL</productname> provides several index types:
|
<productname>PostgreSQL</productname> provides several index types:
|
||||||
B-tree, Hash, GiST, SP-GiST, GIN and BRIN.
|
B-tree, Hash, GiST, SP-GiST, GIN, BRIN, and the extension <link
|
||||||
|
linkend="bloom">bloom</link>.
|
||||||
Each index type uses a different
|
Each index type uses a different
|
||||||
algorithm that is best suited to different types of queries.
|
algorithm that is best suited to different types of queries.
|
||||||
By default, the <link linkend="sql-createindex"><command>CREATE
|
By default, the <link linkend="sql-createindex"><command>CREATE
|
||||||
|
@ -149,18 +149,6 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] <replaceable class=
|
|||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><literal>USING</literal></term>
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
The optional <literal>USING</literal> clause specifies an index
|
|
||||||
type as described in <xref linkend="indexes-types"/>. If not
|
|
||||||
specified, a default index type will be used based on the
|
|
||||||
data types of the columns.
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>INCLUDE</literal></term>
|
<term><literal>INCLUDE</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
@ -250,8 +238,9 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] <replaceable class=
|
|||||||
<para>
|
<para>
|
||||||
The name of the index method to be used. Choices are
|
The name of the index method to be used. Choices are
|
||||||
<literal>btree</literal>, <literal>hash</literal>,
|
<literal>btree</literal>, <literal>hash</literal>,
|
||||||
<literal>gist</literal>, <literal>spgist</literal>, <literal>gin</literal>, and
|
<literal>gist</literal>, <literal>spgist</literal>, <literal>gin</literal>,
|
||||||
<literal>brin</literal>.
|
<literal>brin</literal>, or user-installed access methods like
|
||||||
|
<link linkend="bloom">bloom</link>.
|
||||||
The default method is <literal>btree</literal>.
|
The default method is <literal>btree</literal>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user