aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/src/sgml/bloom.sgml18
1 files changed, 16 insertions, 2 deletions
diff --git a/doc/src/sgml/bloom.sgml b/doc/src/sgml/bloom.sgml
index f857b09bd6b..1f671ed9196 100644
--- a/doc/src/sgml/bloom.sgml
+++ b/doc/src/sgml/bloom.sgml
@@ -51,8 +51,8 @@
<term><literal>length</literal></term>
<listitem>
<para>
- Length of each signature (index entry) in bits. The default
- is <literal>80</literal> bits and maximum is <literal>4096</literal>.
+ Length of each signature (index entry) in bits, it is rounded up to the nearest
+ multiple of 16. The default is <literal>80</literal> bits and maximum is <literal>4096</literal>.
</para>
</listitem>
</varlistentry>
@@ -242,6 +242,20 @@ DEFAULT FOR TYPE text USING bloom AS
operations in the future.
</para>
</listitem>
+
+ <listitem>
+ <para>
+ <literal>bloom</literal> access method doesn't support
+ <literal>UNIQUE</literal> indexes.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>bloom</literal> access method doesn't support searching for
+ <literal>NULL</literal> values.
+ </para>
+ </listitem>
</itemizedlist>
</para>
</sect2>