Re: Understanding sequential versus index scans.

From: Robert James <srobertjames(at)gmail(dot)com>
To: Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Understanding sequential versus index scans.
Date: 2009-07-20 00:10:22
Message-ID: e09785e00907191710q7368d50fx2589b5005f49d7cf@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

UNION was better, but still 5 times as slow as either query done
individually.
set enable_seqscan=off didn't help at all - it was totally ignored
Is there anything else I can do?

On Sun, Jul 19, 2009 at 7:47 PM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:

> Robert James <srobertjames(at)gmail(dot)com> writes:
> > Hi. I notice that when I do a WHERE x, Postgres uses an index, and when
> I
> > do WHERE y, it does so as well, but when I do WHERE x OR y, it
> > doesn't.
>
> It can use indexes for OR conditions, but not for arbitrary OR
> conditions...
>
> > select * from dict
> > where
> > word in (select substr('moon', 0, generate_series(3,length('moon')))) --
> > this is my X above
> > OR word like 'moon%' -- this is my Y above
>
> ... and that one is pretty arbitrary. You might have some luck with
> using a UNION instead, viz
>
> select * from dict where X
> union all
> select * from dict where Y
>
> regards, tom lane
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Adrian Klaver 2009-07-20 00:15:12 Re: timestamp with time zone tutorial
Previous Message Robert James 2009-07-20 00:07:58 Should I CLUSTER on PRIMARY KEY