Also remove USING erroneously added recently.
Reported-by: Jeff Janes
Discussion: https://postgr.es/m/CAMkU=1zhCpC7hottyMWM5Pimr9vRLprSwzLg+7PgajWhKZqRzw@mail.gmail.com
Backpatch-through: 10
PostgreSQL provides several index types:
- B-tree, Hash, GiST, SP-GiST, GIN and BRIN.
+ B-tree, Hash, GiST, SP-GiST, GIN, BRIN, and the extension
+ linkend="bloom">bloom.
Each index type uses a different
algorithm that is best suited to different types of queries.
By default, the CREATE
-
- USING
-
- The optional USING clause specifies an index
- type as described in . If not
- specified, a default index type will be used based on the
- data types of the columns.
-
-
-
-
INCLUDE
The name of the index method to be used. Choices are
btree, hash,
- gist, spgist, gin, and
- brin.
+ gist, spgist, gin,
+ brin, or user-installed access methods like
+ bloom.
The default method is btree.