mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
contrib/bloom documentation improvement
This commit documents rounding of "length" parameter and absence of support for unique indexes and NULLs searching. Backpatch to 9.6 where contrib/bloom was introduced. Discussion: https://postgr.es/m/CAF4Au4wPQQ7EHVSnzcLjsbY3oLSzVk6UemZLD1Sbmwysy3R61g%40mail.gmail.com Author: Oleg Bartunov with minor editorialization by me Backpatch-through: 9.6
This commit is contained in:
parent
010041ddcc
commit
a05f7053e8
@ -51,8 +51,8 @@
|
|||||||
<term><literal>length</></term>
|
<term><literal>length</></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Length of each signature (index entry) in bits. The default
|
Length of each signature (index entry) in bits, it is rounded up to the nearest
|
||||||
is <literal>80</> bits and maximum is <literal>4096</>.
|
multiple of <literal>16</>. The default is <literal>80</> bits and maximum is <literal>4096</literal>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
@ -242,6 +242,20 @@ DEFAULT FOR TYPE text USING bloom AS
|
|||||||
operations in the future.
|
operations in the future.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</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>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user