Re: Removing unneeded self joins - Mailing list pgsql-hackers

From Alexander Lakhin
Subject Re: Removing unneeded self joins
Date
Msg-id 4788f781-31bd-9796-d7d6-588a751c8787@gmail.com
Whole thread Raw
In response to Re: Removing unneeded self joins  (Alexander Lakhin <exclusion@gmail.com>)
Responses Re: Removing unneeded self joins
List pgsql-hackers
Hello Andrei and Alexander,

Please look at the following query which produces an incorrect result since
d3d55ce57:
CREATE TABLE t(a int PRIMARY KEY, b int);
INSERT INTO t VALUES  (1, 1), (2, 1);
SELECT * FROM t WHERE EXISTS (SELECT * FROM t t2 WHERE t2.a = t.b AND t2.b > 0);

  a | b
---+---
  1 | 1
(1 row)

I think that the expected result is:
  a | b
---+---
  1 | 1
  2 | 1
(2 rows)

Best regards,
Alexander



pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: the s_lock_stuck on perform_spin_delay
Next
From: Rafsun Masud
Date:
Subject: Re: printing raw parse tree