From: Bruce Momjian Date: Thu, 1 Sep 2022 02:35:09 +0000 (-0400) Subject: doc: mention "bloom" as a possible index access method X-Git-Tag: REL_11_18~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f4435ac72021a6c7371416b7eb7c3327958f3142;p=thirdparty%2Fpostgresql.git 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 --- diff --git a/doc/src/sgml/indices.sgml b/doc/src/sgml/indices.sgml index 82e43fe6bce..6119e8bc03f 100644 --- a/doc/src/sgml/indices.sgml +++ b/doc/src/sgml/indices.sgml @@ -118,7 +118,8 @@ CREATE INDEX test1_id_index ON test1 (id); 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 bloom. Each index type uses a different algorithm that is best suited to different types of queries. By default, the CREATE INDEX command creates diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml index 45ca56fad3a..9b9b58ed344 100644 --- a/doc/src/sgml/ref/create_index.sgml +++ b/doc/src/sgml/ref/create_index.sgml @@ -149,18 +149,6 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] - - 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 @@ -245,8 +233,9 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] 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.