Re: pg_views definition format - Mailing list pgsql-hackers

From Kevin Field
Subject Re: pg_views definition format
Date
Msg-id 40ec5c83-9d79-44e7-b264-a93299f03102@j12g2000vbl.googlegroups.com
Whole thread Raw
In response to pg_views definition format  (Kev <kevinjamesfield@gmail.com>)
Responses Re: pg_views definition format  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
Re: pg_views definition format  (Andrew Dunstan <andrew@dunslane.net>)
List pgsql-hackers
On May 13, 11:31 am, Kev <kevinjamesfi...@gmail.com> wrote:
> Hi,
>
> I have a script that automatically generates the SQL to create some
> views.  I'd like it to check whether its generated SQL matches the SQL
> returned by "select definition from pg_views where...".  I've guessed
> most of the rules just by looking at the output, but I was surprised
> to find that some of my views of the form:
>
> select.........from b left join a on a.id=b.id
>
> ...were being translated to this:
>
> SELECT..........FROM (B LEFT JOIN a ON ((a.id = b.id)))
>
> ...before being stored in the table pg_views is derived from.  My
> surprise is at the double parentheses around "a.id = b.id".  Is that
> supposed to be that way?  Is it likely to change?
>
> Thanks,
> Kev

One other thing I'm just curious about, "!=" gets replaced with
"<>"...how come?  (Feels more VB-ish than C-ish, so I was surprised
that that would be the official/preferred reconstruct....)


pgsql-hackers by date:

Previous
From: aftertaf
Date:
Subject: Re: Windows installation service
Next
From: "Kevin Grittner"
Date:
Subject: Re: pg_views definition format