Re: Adding column comment to information_schema.columns

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: jearl(at)bullysports(dot)com
Cc: Andreas Pflug <pgadmin(at)pse-consulting(dot)de>, Justin Clift <jc(at)telstra(dot)net>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, PostgreSQL Hackers Mailing List <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Adding column comment to information_schema.columns
Date: 2004-07-01 17:04:33
Message-ID: 20040701095654.X31438@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Thu, 1 Jul 2004 jearl(at)bullysports(dot)com wrote:

> Andreas Pflug <pgadmin(at)pse-consulting(dot)de> writes:
>
> > Justin Clift wrote:
> >
> >> Tom Lane wrote:
> >>
> >>>
> >>> This question has been touched on before, but I guess it's time to
> >>> face it fair and square: is it reasonable for an SQL
> >>> implementation to add implementation-specific columns to an
> >>> information_schema view? One could certainly argue that the
> >>> entire point of information_schema is to be *standard*, not more,
> >>> not less. OTOH I do not know if adding an extra column is likely
> >>> to break anyone's application. Comments?
> >>
> >>
> >> Well, I suppose it reduces application portability if anyone starts
> >> relying on it.
> >
> >
> > We're advertising to do pure ANSI, so we'd mislead people if we
> > supplied non-standard columns.
>
> Yes, but if folks wanted to stick to the standard PostgreSQL would
> still work. The only difference is that people who aren't concerned

That might not be true. It is possible to write queries that might work
on a database without extra columns and would fail or act differently with
extra columns depending on things like the names of the added columns
(possibly altering natural join), the positions of the column (possibly
altering sql92 order by ordinal position behavior) and the existance of
the column itself (possibly altering queries that use select * on one
branch of a union/intersect/except query for example).

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Dennis Bjorklund 2004-07-01 17:07:31 Re: Adding column comment to information_schema.columns
Previous Message Tom Lane 2004-07-01 17:02:27 Schedule, feature freeze, etc