Re: " keywords... Is it normal ? - Mailing list pgadmin-hackers

From Raphaël Enrici
Subject Re: " keywords... Is it normal ?
Date
Msg-id 4140BD2D.7070202@club-internet.fr
Whole thread Raw
In response to Re: " keywords... Is it normal ?  (Raphaël Enrici <blacknoz@club-internet.fr>)
Responses Re: " keywords... Is it normal ?
Re: " keywords... Is it normal ?
List pgadmin-hackers
Raphaël Enrici wrote:
> Raphaël Enrici wrote:
>
>> Hi,
>>
>> just noticed something I was not used to see. Is it normal that some
>> postgre keywords are quoted ?
>> http://www.enrici.com/pgadmin/SCREENSHOTS/Scr-1.1.0.20040908.png
>>
>
> Note that it gives me a sql source which is unusable in the query
> window... Example:
Sorry to insist... but I was not clear enough.

Here is my original sql source:

-- Table: pages

DROP TABLE pages;

CREATE TABLE pages
(
   page varchar(50) NOT NULL DEFAULT '',
   content bytea NOT NULL,
   changetime timestamp NOT NULL
)
WITH OIDS;
GRANT ALL ON TABLE pages TO ralph WITH GRANT OPTION;
GRANT ALL ON TABLE pages TO GROUP "www-data";

I run it in the query window and then look at it in the schema browser
and re-open it in the query window... it gives the following source
which is unusable:
-- Table: pages

-- DROP TABLE pages;

CREATE TABLE pages
(
   page "varchar"(50) NOT NULL DEFAULT ''::character varying,
   content bytea NOT NULL,
   changetime "timestamp" NOT NULL
)
WITH OIDS;
GRANT ALL ON TABLE pages TO ralph WITH GRANT OPTION;
GRANT ALL ON TABLE pages TO GROUP "\""www-data\""";

Known one ?

Regards,
Raphaël

pgadmin-hackers by date:

Previous
From: Raphaël Enrici
Date:
Subject: Re: " keywords... Is it normal ?
Next
From: "Diego A. Gil"
Date:
Subject: just a question ..