Re: Testing v1.7: CREATE TYPE

Поиск
Список
Период
Сортировка
От Dave Page
Тема Re: Testing v1.7: CREATE TYPE
Дата
Msg-id 46483E45.2080007@postgresql.org
обсуждение исходный текст
Ответ на Testing v1.7: CREATE TYPE  (Erwin Brandstetter <brandstetter@falter.at>)
Ответы Re: Testing v1.7: CREATE TYPE  (Erwin Brandstetter <brandstetter@falter.at>)
Список pgadmin-hackers
Erwin Brandstetter wrote:
> 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;

Simple typo - missing a 'else ' :-(

Fixed now, thanks!

Regards, Dave

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: svn@pgadmin.org
Дата:
Сообщение: SVN Commit by dpage: r6299 - trunk/pgadmin3/pgadmin/schema
Следующее
От: Dave Page
Дата:
Сообщение: Re: Testing v1.7: Options->Display