Re: Performance inside and outside view ( WAS Re: Select the

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: Gaetano Mendola <mendola(at)bigfoot(dot)com>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Performance inside and outside view ( WAS Re: Select the
Date: 2002-09-12 16:05:26
Message-ID: 20020912090208.Q46162-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thu, 12 Sep 2002, Gaetano Mendola wrote:

>
> "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote in message
> news:7350(dot)1031842223(at)sss(dot)pgh(dot)pa(dot)us(dot)(dot)(dot)
> > "Gaetano Mendola" <mendola(at)bigfoot(dot)com> writes:
> > > Yes that's right it's help me,
> > > but here the optimizer have some problems:
> >
> > What's the datatype of id_user, and why are you quoting the compared
> > constant in some cases but not others? I don't think the difference
> > has anything to do with the view here ...
>
> id_user is an INTEGER type.
>
> Well what about this two selects:
>
> a) SELECT DISTINCT ON (id_user) *
> FROM user_logs
> WHERE id_user = 5430
> ORDER BY id_user, id_user_log DESC;
>
> b) CREATE VIEW last_user_logs AS
> SELECT DISTINCT ON (id_user) *
> FROM user_logs
> ORDER BY id_user, id_user_log DESC;
>
> SELECT *
> FROM last_user_logs
> WHERE id_user = 5430
>
>
> I think that in the second case the filter is not pushed inside the view.

Pushing into distinct on has limited cases where it's legal,
you're using one of them, but the system doesn't differentiate
and doesn't push in either.

select distinct on (col1) * from table where col2=2;
and
select * from (select distinct on (col1) * from table) v
where col2=2; -- this is like a view case
are not the same query.

I believe Tom makes a comment to the effect that it should
be safe if the clause only references distinct on'd columns.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Tim Perdue 2002-09-12 17:44:26 Latitude / Longitude
Previous Message Hanno Wiegard 2002-09-12 15:57:44 Table alias in DELETE statements