Forum OpenACS Q&A: Type declaration

Collapse
Posted by Nick Carroll on
Hi,

How would I make the following Oracle declaration in a Postgresql
function?

TYPE int_tab IS TABLE OF INTEGER INDEX BY binary_integer;
ids    int_tab;
date_ids int_tab;

Collapse
Posted by Roberto Mello on
I know of no straight-forward way to do this in PostgreSQL. You'll have to think of a different way to do what you're trying to do (which is not evident from the information you posted).