projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1087aa2
)
Fix typo in docs
author
Teodor Sigaev
<teodor@sigaev.ru>
Tue, 24 May 2016 12:27:48 +0000
(15:27 +0300)
committer
Teodor 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
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/bloom.sgml
b/doc/src/sgml/bloom.sgml
index 7349095269becee31d741b4da3a84b1ef134c7c0..25e0d679a03f08241d156af4762617702ff2cde2 100644
(file)
--- a/
doc/src/sgml/bloom.sgml
+++ b/
doc/src/sgml/bloom.sgml
@@
-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>