doc: mention "bloom" as a possible index access method
authorBruce Momjian
Thu, 1 Sep 2022 02:35:09 +0000 (22:35 -0400)
committerBruce Momjian
Thu, 1 Sep 2022 02:35:09 +0000 (22:35 -0400)
Also remove USING erroneously added recently.

Reported-by: Jeff Janes
Discussion: https://postgr.es/m/CAMkU=1zhCpC7hottyMWM5Pimr9vRLprSwzLg+7PgajWhKZqRzw@mail.gmail.com

Backpatch-through: 10

doc/src/sgml/indices.sgml
doc/src/sgml/ref/create_index.sgml

index 2a70e02f7c4d7f724ce31cbb183e22a4c5e7e7c0..0c3fcfd62f8e6d86dfc01da4dddc0ba98227d6b9 100644 (file)
@@ -117,7 +117,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 
+   linkend="bloom">bloom.
    Each index type uses a different
    algorithm that is best suited to different types of queries.
    By default, the CREATE
index 944fdb4b094a984db897f3c0d7a8e56a826ecf2d..40986aa502ffd11df4eab97e7688dcc7508aeb69 100644 (file)
@@ -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
       
@@ -250,8 +238,9 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] 
        
         The name of the index method to be used.  Choices are
         btreehash,
-        gistspgistgin, and
-        brin.
+        gistspgistgin,
+        brin, or user-installed access methods like
+        bloom.
         The default method is btree.