Robert Haas wrote:
On Sun, May 24, 2009 at 4:37 PM, Gevik Babakhani <pg...@xs4all.nl> wrote:
I was wondering why there is no pg_class record for the enum types. Do we
treat the enum types differently?

Because types are stored in pg_type, not pg_class?

...Robert
That is certainly not true.... check the following...

create type test_type as
(
field1 integer,
field2 varchar
);

select * from pg_class where relname='test_type'

--
Regards,
Gevik


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

Reply via email to