Re: [HACKERS] Multicolumn hash indexes

Поиск
Список
Период
Сортировка
От Jesper Pedersen
Тема Re: [HACKERS] Multicolumn hash indexes
Дата
Msg-id 99cf8f32-420d-77af-9f1c-b5d5da3b6ce9@redhat.com
обсуждение исходный текст
Ответ на Re: [HACKERS] Multicolumn hash indexes  (Robert Haas <robertmhaas@gmail.com>)
Ответы Re: [HACKERS] Multicolumn hash indexes  (Nico Williams <nico@cryptonector.com>)
Re: [HACKERS] Multicolumn hash indexes  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
On 09/26/2017 08:11 PM, Robert Haas wrote:
> On Tue, Sep 26, 2017 at 7:18 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> Tomasz Ostrowski <tometzky+pg@ato.waw.pl> writes:
>>> I've noticed that hash indexes can't currently (in PG10) be multicolumn.
>>> Are they technically hard to implement or just nobody took such a feature?
>>
>> It's not simple, particularly not if you wish that the index would support
>> queries specifying conditions for just a subset of the indexed columns
>> (an assumption that's buried pretty deeply in the planner, for one thing).
>> Then you couldn't compute the hash.
> 
> Whoa, that seems like moving the goalposts.  Somebody could design a
> hash index that was intended to answer such queries, but it's not the
> one we've got.  I think we should just aim to support equality queries
> on all columns.  That seems like a fairly straightforward
> generalization of what we've already got.
> 

This would require that the applications that are using the database 
knows about the index structure in order to pass down the right columns.

I would say that in most cases that applications doesn't know about 
index structures. So, multiple indexes would have to be created (col1), 
(col1, col2), (col1, col3), ... which isn't ideal.

Maybe an initial proof-of-concept could store the hash of the first 
column (col1) plus the hash of all columns (col1, col2, col3) in the 
index, and see what requirements / design decisions would appear from that.

Best regards, Jesper


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Jesper Pedersen
Дата:
Сообщение: Re: [HACKERS] [POC] hash partitioning
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: [HACKERS] Create replication slot in pg_basebackup if requestedand not yet present