Re: Planner reluctant to start from subquery

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Planner reluctant to start from subquery
Date: 2006-02-01 19:34:24
Message-ID: 3759.1138822464@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

"Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov> writes:
> We do have a few queries where PostgreSQL is several orders of
> magnitude slower. It appears that the reason it is choosing a bad plan
> is that it is reluctant to start from a subquery when there is an outer
> join in the FROM clause.

AFAICT this case doesn't really hinge on the outer join at all. The
problem is that EXISTS subqueries aren't well optimized. I would have
expected an equivalent IN clause to work better. In fact, I'm not
clear why the planner isn't finding the cheapest plan (which it does
estimate as cheapest) from the IN version you posted. What PG version
is this exactly?

> ... The third query is the fastest, but isn't
> portable enough for our mixed environment.

Not really relevant to the problem, but what's wrong with it? Looks
like standard SQL to me.

regards, tom lane

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Kevin Grittner 2006-02-01 19:59:57 Re: Planner reluctant to start from subquery
Previous Message Kevin Grittner 2006-02-01 18:33:02 Planner reluctant to start from subquery