]> granicus.if.org Git - postgresql/commitdiff
Fix typo in docs
authorTeodor Sigaev <teodor@sigaev.ru>
Tue, 24 May 2016 12:27:48 +0000 (15:27 +0300)
committerTeodor Sigaev <teodor@sigaev.ru>
Tue, 24 May 2016 12:27:48 +0000 (15:27 +0300)
Add missing USING BLOOM in example of contrib/bloom

Nikolay Shaplov

doc/src/sgml/bloom.sgml

index 7349095269becee31d741b4da3a84b1ef134c7c0..25e0d679a03f08241d156af4762617702ff2cde2 100644 (file)
@@ -76,7 +76,7 @@
   </para>
 
 <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);
 </programlisting>