Re: Problem with subquery joined to a view

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Kyle <kyle(at)actarg(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Problem with subquery joined to a view
Date: 2000-11-21 18:16:49
Message-ID: 2357.974830609@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Kyle <kyle(at)actarg(dot)com> writes:
> The fourth "select" uses a regular subquery. It gives the error:
> psql:datbug.sql:44: ERROR: Sub-SELECT uses un-GROUPed attribute
> pay_req.wdate from outer query

This appears to work correctly in current sources. In 7.0.* and before
grouped views do not work very well, because the rewriter effectively
expands them in-line, thus converting your outer query into a grouped
query (or making it not work at all, if it was already grouped :-().

See related bug report just a few minutes ago on pgsql-bugs.

regards, tom lane

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Ricardo Dias Marques 2000-11-21 18:56:36 CREATE OR REPLACE VIEW
Previous Message Kyle 2000-11-21 17:51:20 Problem with subquery joined to a view