BUG #16425: Possible error in full join

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: c_michal(at)poczta(dot)onet(dot)pl
Subject: BUG #16425: Possible error in full join
Date: 2020-05-08 15:25:54
Message-ID: 16425-e3aada668f86fc39@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 16425
Logged by: Michal C
Email address: c_michal(at)poczta(dot)onet(dot)pl
PostgreSQL version: 12.2
Operating system: Windows 10
Description:

Sorry for my English
My PG version: "PostgreSQL 12.2, compiled by Visual C++ build 1914,
64-bit"

Example for bag:
with d (a,b) as (values (null::varchar(255),1))
select *
from d d1
full join d d2 using (a,b);

Result:
"a" "b"
null 1
null 1

Why select returns 2 records, Is this correct?

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Jeff Janes 2020-05-08 16:17:41 Re: BUG #16425: Possible error in full join
Previous Message David G. Johnston 2020-05-08 14:17:38 Re: BUG #16424: COPY Command fails for CSV formath