Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit dfc94d3

Browse files
committed
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
1 parent d55fdfb commit dfc94d3

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

doc/src/sgml/indices.sgml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ CREATE INDEX test1_id_index ON test1 (id);
117117

118118
<para>
119119
<productname>PostgreSQL</productname> provides several index types:
120-
B-tree, Hash, GiST, SP-GiST, GIN and BRIN.
120+
B-tree, Hash, GiST, SP-GiST, GIN, BRIN, and the extension <link
121+
linkend="bloom">bloom</link>.
121122
Each index type uses a different
122123
algorithm that is best suited to different types of queries.
123124
By default, the <command>CREATE INDEX</command> command creates

doc/src/sgml/ref/create_index.sgml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -148,18 +148,6 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] <replaceable class=
148148
</listitem>
149149
</varlistentry>
150150

151-
<varlistentry>
152-
<term><literal>USING</literal></term>
153-
<listitem>
154-
<para>
155-
The optional <literal>USING</literal> clause specifies an index
156-
type as described in <xref linkend="indexes-types"/>. If not
157-
specified, a default index type will be used based on the
158-
data types of the columns.
159-
</para>
160-
</listitem>
161-
</varlistentry>
162-
163151
<varlistentry>
164152
<term><literal>INCLUDE</literal></term>
165153
<listitem>
@@ -246,8 +234,9 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] <replaceable class=
246234
<para>
247235
The name of the index method to be used. Choices are
248236
<literal>btree</literal>, <literal>hash</literal>,
249-
<literal>gist</literal>, <literal>spgist</literal>, <literal>gin</literal>, and
250-
<literal>brin</literal>.
237+
<literal>gist</literal>, <literal>spgist</literal>, <literal>gin</literal>,
238+
<literal>brin</literal>, or user-installed access methods like
239+
<link linkend="bloom">bloom</link>.
251240
The default method is <literal>btree</literal>.
252241
</para>
253242
</listitem>

0 commit comments

Comments
 (0)