Redundant double-quotes in types

From: Erwin Brandstetter <brandstetter(at)falter(dot)at>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: Redundant double-quotes in types
Date: 2008-02-19 19:57:51
Message-ID: 47BB34BF.1060104@falter.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi developers! Hi Dave!

Testing pgAdmin v.1.8.2 (Feb 5 2008), rev: 7050) on WinXP; host: pg 8.2.6 on
Debian Etch

An odd detail in pgAdmin 1.8.2 in reverse engineered SQL for types (in the
"TYPES" collection). The simple type "text" is double-quoted.
Example:
CREATE TYPE t_foo AS
(foo_id integer,
foo "text",
sometxt "text");

Shouldn't that be:
CREATE TYPE t_foo AS
(foo_id integer,
foo text,
sometxt text);

Doesn't seem to do any harm, but is still confusing.

Regards
Erwin

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Erwin Brandstetter 2008-02-19 22:47:45 Obsolete "FORCE" option for REINDEX
Previous Message svn 2008-02-19 18:19:54 SVN Commit by guillaume: r7082 - trunk/www/locale