1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-21 16:02:15 +03:00

Fix typo in docs

Add missing USING BLOOM in example of contrib/bloom

Nikolay Shaplov
This commit is contained in:
Teodor Sigaev
2016-05-24 15:27:48 +03:00
parent 1087aa2314
commit 6ee7fb8244

View File

@ -76,7 +76,7 @@
</para> </para>
<programlisting> <programlisting>
CREATE INDEX bloomidx ON tbloom(i1,i2,i3) CREATE INDEX bloomidx ON tbloom USING bloom (i1,i2,i3)
WITH (length=5, col1=2, col2=2, col3=4); WITH (length=5, col1=2, col2=2, col3=4);
</programlisting> </programlisting>