Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdd03dfe

Browse files
committed
doc: mention "bloom" as a possible index access method
Also remove USING erroneously added recently.Reported-by: Jeff JanesDiscussion:https://postgr.es/m/CAMkU=1zhCpC7hottyMWM5Pimr9vRLprSwzLg+7PgajWhKZqRzw@mail.gmail.comBackpatch-through: 10
1 parent4ea07e7 commitdd03dfe

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 <link linkend="sql-createindex"><command>CREATE

‎doc/src/sgml/ref/create_index.sgml

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

152-
<varlistentry>
153-
<term><literal>USING</literal></term>
154-
<listitem>
155-
<para>
156-
The optional <literal>USING</literal> clause specifies an index
157-
type as described in <xref linkend="indexes-types"/>. If not
158-
specified, a default index type will be used based on the
159-
data types of the columns.
160-
</para>
161-
</listitem>
162-
</varlistentry>
163-
164152
<varlistentry>
165153
<term><literal>INCLUDE</literal></term>
166154
<listitem>
@@ -250,8 +238,9 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] <replaceable class=
250238
<para>
251239
The name of the index method to be used. Choices are
252240
<literal>btree</literal>, <literal>hash</literal>,
253-
<literal>gist</literal>, <literal>spgist</literal>, <literal>gin</literal>, and
254-
<literal>brin</literal>.
241+
<literal>gist</literal>, <literal>spgist</literal>, <literal>gin</literal>,
242+
<literal>brin</literal>, or user-installed access methods like
243+
<link linkend="bloom">bloom</link>.
255244
The default method is <literal>btree</literal>.
256245
</para>
257246
</listitem>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp