Running on Version 1.12.0 Beta4 (Jul 30 2010 rev: REL-1_12_0_BETA4)

Imagine such a type definition:

CREATE SCHEMA test_schema;
CREATE TYPE test_schema.inner_record_type AS
   (a text,
    b integer);
CREATE TYPE test_schema.outer_record_type AS
   (status integer,
    result_array test_schema.inner_record_type[]);

This leads to the invalid type source definition in pgAdmin's type
subtree view:

CREATE TYPE test_schema.outer_record_type AS
   (status integer,
    result_array test_schema."test_schema.inner_record_type"[]);

-- 
Sent via pgadmin-support mailing list (pgadmin-support@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-support

Reply via email to