Re: pgsql: Bloom index contrib module - Mailing list pgsql-committers

From Erik Rijkers
Subject Re: pgsql: Bloom index contrib module
Date
Msg-id bf87c5a78706f206392963be81231365@xs4all.nl
Whole thread Raw
In response to Re: pgsql: Bloom index contrib module  (Erik Rijkers <er@xs4all.nl>)
List pgsql-committers
On 2016-04-01 14:36, Erik Rijkers wrote:
> On 2016-04-01 15:49, Teodor Sigaev wrote:
>> Bloom index contrib module
>>
>> doc/src/sgml/bloom.sgml          | 218 ++++++++++++++++++
>


The size of example table (in bloom.sgml):

CREATE TABLE tbloom AS
SELECT
     random()::int as i1,
     random()::int as i2,
[...]
     random()::int as i12,
     random()::int as i13
FROM
     generate_series(1,1000);

seems too small to demonstrate the index-use.

For me, both on $BigServer at work as on $ModestDesktop at home the 1000
rows are not enough.

I suggest making the rowcount in that example a larger, for instance
10000, so: generate_series(1,10000).

Does that make sense?  I realize the behavior is probably somewhat
dependent from hardware and settings...


thanks,


Erik Rijkers



pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: pgsql: test_slot_timelines: Fix alternate expected output
Next
From: Noah Misch
Date:
Subject: pgsql: Copyedit comments and documentation.