Re: pgsql: Bloom index contrib module

Поиск
Список
Период
Сортировка
От Erik Rijkers
Тема Re: pgsql: Bloom index contrib module
Дата
Msg-id bf87c5a78706f206392963be81231365@xs4all.nl
обсуждение исходный текст
Ответ на Re: pgsql: Bloom index contrib module  (Erik Rijkers <er@xs4all.nl>)
Список 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 по дате отправления:

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: test_slot_timelines: Fix alternate expected output
Следующее
От: Noah Misch
Дата:
Сообщение: pgsql: Copyedit comments and documentation.