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 2ef93680aca391d0469f984fff24df10b7fa88df..078ffe81c6818a5fb30b3e705b607863c369332b 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 command creates
index dd468717b5c8f158b3ed52933036e80f0406adaa..2038bcb0aee4628dbccd688d5fa1edda74106c55 100644 (file)
@@ -148,18 +148,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
       
@@ -246,8 +234,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.