Re: order by index, and inheritance - Mailing list pgsql-performance

From Rod Taylor
Subject Re: order by index, and inheritance
Date
Msg-id 1082641607.91360.2.camel@jester
Whole thread Raw
In response to order by index, and inheritance  (Michiel Meeuwissen <Michiel.Meeuwissen@omroep.nl>)
Responses Re: order by index, and inheritance
List pgsql-performance
On Thu, 2004-04-22 at 07:02, Michiel Meeuwissen wrote:
> Rod Taylor <pg@rbt.ca> wrote:
> > The scan is picking the best method for grabbing everything within the
> > table, since it is not aware that we do not require everything.
>
> Hmm. That is a bit silly. Why does it use the index if select only from
> mm_mediasources?
>
> > You can explicitly tell it what you want to do via:
> >
> > SELECT *
> >   FROM (SELECT * FROM mm_mediasources ORDER BY number DESC LIMIT 20
> >   UNION SELECT * FROM <subtable> ORDER BY number DESC LIMIT 20) AS tab
> >  ORDER BY number DESC LIMIT 20
>
> I think you meant 'only mm_mediasources', and btw order by and limit are not
> accepted before union, so the above query does not compile.

Yes, I did mean only. Try putting another set of brackets around the
selects to get ORDER BY, etc. accepted. You can add another layer of
subselects in the from if that doesn't work.


pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: Help with performance problems
Next
From: Rod Taylor
Date:
Subject: Re: order by index, and inheritance