Testing v1.7: CREATE TABLE

From: Erwin Brandstetter <brandstetter(at)falter(dot)at>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: Testing v1.7: CREATE TABLE
Date: 2007-05-15 20:22:35
Message-ID: 464A168B.9030204@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.

A solved issue, and a minor thing. If I create a table like this:
CREATE TABLE mytest ( t timestamp(0))

That's what pgAdmin 1.6.3 displays:

-- Table: mytest

-- DROP TABLE mytest;

CREATE TABLE mytest
(
t timestamp(0 without time zone
)
WITHOUT OIDS;
ALTER TABLE mytest OWNER TO postgres;

pgAdmin 1.7:

-- Table: mytest

-- DROP TABLE mytest;

CREATE TABLE mytest
(
t timestamp(0) without time zone
)
WITHOUT OIDS
;
ALTER TABLE mytest OWNER TO postgres;

The good news: type with modifier is being displayed correctly in 1.7.
The minor thing: why the extra line break before ";"?

Regards
Erwin

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Guillaume Lelarge 2007-05-15 20:59:09 Re: Testing v1.7: CREATE TABLE
Previous Message Milen A. Radev 2007-05-15 12:16:16 'Stealing' SQL files association considered harmful