[HACKERS] Arrays of domains - Mailing list pgsql-hackers

From Tom Lane
Subject [HACKERS] Arrays of domains
Date
Msg-id 9852.1499791473@sss.pgh.pa.us
Whole thread Raw
Responses Re: [HACKERS] Arrays of domains
Re: [HACKERS] Arrays of domains
Re: [HACKERS] Arrays of domains
List pgsql-hackers
Over in
https://www.postgresql.org/message-id/877ezgyn60.fsf@metapensiero.it
there's a gripe about array_agg() not working for a domain type.
It fails because we don't create an array type over a domain type,
so the parser can't identify a suitable output type for the polymorphic
aggregate.

We could imagine tweaking the polymorphic-function resolution rules
so that a domain matched to ANYELEMENT is smashed to its base type,
allowing ANYARRAY to be resolved as the base type's array type.
While that would be a pretty localized fix, it seems like a kluge
to me.

Probably a better answer is to start supporting arrays over domain
types.  That was left unimplemented in the original domains patch,
but AFAICS not for any better reason than lack of round tuits.
I did find an argument here:
https://www.postgresql.org/message-id/3C98F7F6.29FE1248@redhat.com
that the SQL spec forbids domains over arrays, but that's the opposite
case (and a restriction we long since ignored, anyway).

Can anyone think of a reason not to pursue that?
        regards, tom lane



pgsql-hackers by date:

Previous
From: Shubham Barai
Date:
Subject: [HACKERS] GSoC 2017: weekly progress reports (week 6)
Next
From: Claudio Freire
Date:
Subject: Fwd: [HACKERS] Vacuum: allow usage of more than 1GB of work mem