Re: some of the datatypes only support hashing, while others only support sorting

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: some of the datatypes only support hashing, while others only support sorting
Дата
Msg-id 11087.1244905821@sss.pgh.pa.us
обсуждение исходный текст
Ответ на some of the datatypes only support hashing, while others only support sorting  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
Robert Haas <robertmhaas@gmail.com> writes:
> This errdetail doesn't seem quite right in the following situation:
> rhaas=# select distinct proacl from pg_proc;
> ERROR:  could not implement DISTINCT
> DETAIL:  Some of the datatypes only support hashing, while others only
> support sorting.

Hmm, interesting case.  The reason the planner is assuming that that
must be the failure mode is that the parser is not supposed to let
through a DISTINCT request for a datatype that can't be either sorted
or hashed.  proacl is of course of aclitem[], and type aclitem has a
hashable equality operator but no sort operator.  Which causes
get_sort_group_operators() to assume that aclitem[] can likewise be
hashed but not sorted.  However, there is no hash opclass for anyarray,
so actually it's not hashable either; and the test the planner uses
discovers that.

It seems like we ought to add opclass entries and an anyarray hash
function, but of course it's too late for that for 8.4.

What I'll do for the moment is kluge up get_sort_group_operators()
to reflect the fact that arrays are only sortable and not hashable.
        regards, tom lane


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pgindent run coming
Следующее
От: kris@shannon.id.au
Дата:
Сообщение: Re: PostgreSQL Developer meeting minutes up