array of domain types - Mailing list pgsql-hackers

From Konstantin Knizhnik
Subject array of domain types
Date
Msg-id 574EE129.2000903@postgrespro.ru
Whole thread Raw
Responses Re: array of domain types  (Thom Brown <thom@linux.com>)
List pgsql-hackers
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?

-- 
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company




pgsql-hackers by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: PostmasterPid not marked with PGDLLIMPORT
Next
From: Thom Brown
Date:
Subject: Re: array of domain types