Re: BUG #5542: Query optimization problem - Mailing list pgsql-bugs

From Robert Haas
Subject Re: BUG #5542: Query optimization problem
Date
Msg-id AANLkTilrRoFkqoUyPW2A50HyQ2fydOG_zoH3cbCoYdB8@mail.gmail.com
Whole thread Raw
In response to BUG #5542: Query optimization problem  ("Roman" <zotov@oe-it.ru>)
List pgsql-bugs
On Tue, Jul 6, 2010 at 2:43 AM, Roman <zotov@oe-it.ru> wrote:
> I have a query:
>
> SELECT d1.ID, d2.ID
> FROM DocPrimary d1
> =A0JOIN DocPrimary d2 ON d2.BasedOn=3Dd1.ID
> WHERE (d1.ID=3D234409763) or (d2.ID=3D234409763)
>
> i think what QO(Query Optimizer) can make it faster (now it seq scan and =
on
> million records works 7 sec)
>
> SELECT d1.ID, d2.ID
> FROM DocPrimary d1
> =A0JOIN DocPrimary d2 ON d2.BasedOn=3Dd1.ID
> WHERE (d2.BasedOn=3D234409763) or (d2.ID=3D234409763)

EXPLAIN ANALYZE output for both queries, please?

--=20
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise Postgres Company

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #5547: not able to connect to postgres through the oracle using Linux ODBC driver for Postgres
Next
From: Craig Ringer
Date:
Subject: Re: [TESTERS] Location of certs -Windows 7 SSL mode?