Re: No way to list DDL for a new type - Mailing list pgsql-bugs

From Merlin Moncure
Subject Re: No way to list DDL for a new type
Date
Msg-id b42b73150806110657m6a632e66rd0da016373469d47@mail.gmail.com
Whole thread Raw
In response to Re: No way to list DDL for a new type  ("Heikki Linnakangas" <heikki@enterprisedb.com>)
List pgsql-bugs
On 6/11/08, Heikki Linnakangas <heikki@enterprisedb.com> wrote:
> Rajesh Chopra wrote:
> > Hi,
> > I created a new type as follows:
> > CREATE TYPE compfoo AS (f1 int, f2 text);
> >
> > Now I need the DDL which postgres used to create this type.
> >
>
> Huh, what do you mean? That CREATE TYPE statement is DDL.

I think what the OP was asking was how to reverse engineer the DDL out
of the database for an already created type (but you're right, this is
not a bug).  in psql, the create type source sql is not displayed like
it is for views for example.

There are a couple of ways to do this:
*) pg_dump -s and examine the output
*) fire up pgadmin, browse types folder-- pgadmin shows source ddl for
all database objects

Also, composite types (CREATE TYPE AS), are trivially reverse
engineered from the column lists.  Non composite types are a little
more complicated.

side thought -- it would be nice for pg_restore to be able to extract
more specific objects out of the custom format dump than what it
currently allows...types for example.

merlin

pgsql-bugs by date:

Previous
From: "Heikki Linnakangas"
Date:
Subject: Re: No way to list DDL for a new type
Next
From: Pierre Le Mouëllic
Date:
Subject: Bug in select to_char(now(), 'YYYY/MM/DD HH24:MI:SS:MS')