@ -57,8 +57,8 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] <replaceable class=
<para>
<para>
<productname>PostgreSQL</productname> provides the index methods
<productname>PostgreSQL</productname> provides the index methods
B-tree, hash, GiST, SP-GiST, and GIN. Users can also define their own index
B-tree, hash, GiST, SP-GiST, GIN, and BRIN. Users can also define their own
methods, but that is fairly complicated.
index methods, but that is fairly complicated.
</para>
</para>
<para>
<para>
@ -166,7 +166,8 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] <replaceable class=
<para>
<para>
The name of the index method to be used. Choices are
The name of the index method to be used. Choices are
<literal>btree</literal>, <literal>hash</literal>,
<literal>btree</literal>, <literal>hash</literal>,
<literal>gist</literal>, <literal>spgist</> and <literal>gin</>.
<literal>gist</literal>, <literal>spgist</>, <literal>gin</>, and
<literal>brin</>.
The default method is <literal>btree</literal>.
The default method is <literal>btree</literal>.
</para>
</para>
</listitem>
</listitem>
@ -492,7 +493,7 @@ Indexes:
</caution>
</caution>
<para>
<para>
Currently, only the B-tree, GiST and G IN index methods support
Currently, only the B-tree, GiST, GIN, and BR IN index methods support
multicolumn indexes. Up to 32 fields can be specified by default.
multicolumn indexes. Up to 32 fields can be specified by default.
(This limit can be altered when building
(This limit can be altered when building
<productname>PostgreSQL</productname>.) Only B-tree currently
<productname>PostgreSQL</productname>.) Only B-tree currently