Testing v1.7: CREATE TYPE

From: Erwin Brandstetter <brandstetter(at)falter(dot)at>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: Testing v1.7: CREATE TYPE
Date: 2007-05-12 01:52:32
Message-ID: 46451DE0.6090609@falter.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi developers! Hi Dave!

Testing pgAdmin III 1.7.0, rev 6292:6293, client Win XP, host: Debian
Sarge, PG 8.1.8.

I have run more tests. Found something more substantial:
If I create like this:

CREATE TYPE mytype AS (a integer, b text, c integer)

the display in the object browser gets messed up. Looks like you try to
display both forms of CREATE TYPE at once:

CREATE TYPE mytype AS
(a integer,
b text,
c integer
(INPUT=record_in, OUTPUT=record_out, DEFAULT='',
INTERNALLENGTH=-1, ALIGNMENT=double, STORAGE=EXTENDED);
ALTER TYPE mytype OWNER TO postgres;

Regards
Erwin

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Erwin Brandstetter 2007-05-12 02:19:16 Testing v1.7: Options->Display
Previous Message svn 2007-05-11 17:48:57 SVN Commit by dpage: r6298 - trunk/pgadmin3/pgadmin