Re: [HACKERS] Bug on complex join

From: Vadim Mikheev <vadim(at)krs(dot)ru>
To: phd2(at)earthling(dot)net
Cc: PostgreSQL-development <pgsql-hackers(at)postgreSQL(dot)org>
Subject: Re: [HACKERS] Bug on complex join
Date: 1999-03-06 10:06:48
Message-ID: 36E0FE38.E56C435D@krs.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Oleg Broytmann wrote:
>
> Hi!
>
> I am continuing playing with the query (I reduced it to):
> SELECT sh.distr_id , d.distr_id
> FROM central cn, shops sh, districts d
> WHERE cn.shop_id = sh.shop_id
>
> and got 27963 rows. I filtered it out (with awk:) where $1 == $2 (1st
> column is equal to second) and got 3104 rows.
>
> But the query
> SELECT d.*
> FROM central cn, shops sh, districts d
> WHERE cn.shop_id = sh.shop_id AND sh.distr_id = d.distr_id
>
> returned 0 rows.
>
> Where is the bug?

Please post me EXPLAIN VERBOSE for second query.

Vadim

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tatsuo Ishii 1999-03-06 14:08:09 Re: [HACKERS] Why is that so slow?
Previous Message Vadim Mikheev 1999-03-06 09:57:10 Re: [HACKERS] Not enough memory for complex join