Re: array of domain types

From: Thom Brown <thom(at)linux(dot)com>
To: Konstantin Knizhnik <k(dot)knizhnik(at)postgrespro(dot)ru>
Cc: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: array of domain types
Date: 2016-06-01 13:37:14
Message-ID: CAA-aLv76Z6KYM+F3o1OTvLjCSubRpbd16iNM_HJUs==fZm_FQQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 1 June 2016 at 14:20, Konstantin Knizhnik <k(dot)knizhnik(at)postgrespro(dot)ru>
wrote:

> I wonder why domain types can not be used for specification of array
> element:
>
> create domain objref as bigint;
> create table foo(x objref[]);
> ERROR: type "objref[]" does not exist
> create table foo(x bigint[]);
> CREATE TABLE
>
> Is there some principle problem here or it is just not implemented?

It's not implemented, but patches welcome.

Thom

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Meskes 2016-06-01 13:44:54 Re: Question and suggestion about application binary compatibility policy
Previous Message Konstantin Knizhnik 2016-06-01 13:20:41 array of domain types