Re: BUG #4748: hash join and sort-merge join make different results

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Roman Kononov <kononov(at)ftml(dot)net>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #4748: hash join and sort-merge join make different results
Date: 2009-04-03 19:10:13
Message-ID: 20090403191013.GJ23023@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Roman Kononov wrote:

> Description: hash join and sort-merge join make different results
> Details:
>
> test-std=# create table t(s int,i interval);
> CREATE TABLE
> test-std=# insert into t values (0,'30 days'), (1,'1 month');
> INSERT 0 2
> test-std=# select * from t as a, t as b where a.i=b.i;

Reproducible in 8.2.13 as well ..

--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Jaime Casanova 2009-04-03 19:38:18 Re: BUG #4748: hash join and sort-merge join make different results
Previous Message Roman Kononov 2009-04-03 19:07:46 BUG #4748: hash join and sort-merge join make different results