Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Re: BUG #3308: Nested outer join gives wrong results



"George Sakkis" <george(dot)sakkis(at)gmail(dot)com> writes:
> SELECT *
> FROM (
>   SELECT query.id as q_id
>   FROM ranker, run, query
>   WHERE ranker.id = 72 AND 
>         run.id = ranker.run_id AND 
>         query.set_id = run.set_id
> ) AS t1
> LEFT JOIN (
>   SELECT serp_result.q_id
>   FROM serp_result LEFT OUTER JOIN editor_rating using (q_id,norm_url)
>   WHERE serp_result.ranker_id = 72 AND 
>         serp_result.rank <= 1 
>         AND editor_rating.grade is null
> ) AS t2 USING (q_id)

This query looks like it's probably affected by the same bug reported a
couple days ago:
http://archives.postgresql.org/pgsql-bugs/2007-05/msg00187.php
and patched here:
http://archives.postgresql.org/pgsql-committers/2007-05/msg00305.php

The "WHERE editor_rating.grade is null" bit prevents the two outer joins
from being re-ordered, but released 8.2.x versions fail to notice that.

			regards, tom lane



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group