Thread: oracle varray functionality?

oracle varray functionality?

From
"Postgres User"
Date:
I've run across a custom type in an oracle database that I am porting to 
PostGreSQL: 

create or replace type number_varray as varray(1000) of number; 

Is the int4array example the same as this? 

create type int4array(input=int4array_in,output=int4array_out,
internallength=variable,element=int4); 

pgu