Re: some of the datatypes only support hashing, while others only support sorting - Mailing list pgsql-hackers

From Tom Lane
Subject Re: some of the datatypes only support hashing, while others only support sorting
Date
Msg-id 11087.1244905821@sss.pgh.pa.us
Whole thread Raw
In response to some of the datatypes only support hashing, while others only support sorting  (Robert Haas <robertmhaas@gmail.com>)
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: pgindent run coming
Next
From: kris@shannon.id.au
Date:
Subject: Re: PostgreSQL Developer meeting minutes up