From: Teodor Sigaev Date: Tue, 24 May 2016 12:27:48 +0000 (+0300) Subject: Fix typo in docs X-Git-Tag: REL9_6_BETA2~161 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ee7fb8244560b7a3f224784b8ad2351107fa55d;p=thirdparty%2Fpostgresql.git Fix typo in docs Add missing USING BLOOM in example of contrib/bloom Nikolay Shaplov --- diff --git a/doc/src/sgml/bloom.sgml b/doc/src/sgml/bloom.sgml index 7349095269b..25e0d679a03 100644 --- a/doc/src/sgml/bloom.sgml +++ b/doc/src/sgml/bloom.sgml @@ -76,7 +76,7 @@ -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);