BUG #7501: Unique index fails to check uniqueness on nulls - Mailing list pgsql-bugs

From matthew.p.kusnierz@jpmorgan.com
Subject BUG #7501: Unique index fails to check uniqueness on nulls
Date
Msg-id E1T4Tra-0003VA-Lv@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #7501: Unique index fails to check uniqueness on nulls  (Jeff Davis <pgsql@j-davis.com>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      7501
Logged by:          Matt Kusnierz
Email address:      matthew.p.kusnierz@jpmorgan.com
PostgreSQL version: 9.0.4
Operating system:   Windows XP
Description:        =


Multi-column unique indexes allow duplicate rows to be inserted if any of
the indexed columns are inserted with a null.

For example:

create table foo (a varchar(10) null, b varchar(10) null);
create unique index uix on foo (a, b);

insert into foo (a, b) values ('abc', null);
insert into foo (a, b) values ('abc', null);

Clearly the second insert should fail with an ERROR: duplicate key value
violates unique constraint "uix"

But this does not occur!

pgsql-bugs by date:

Previous
From: Craig Ringer
Date:
Subject: Re: additional message to the bug #7499
Next
From: Denis Kolesnik
Date:
Subject: the bug #7499 is not more a bug, but my missunderstanding (RESOLVED INVALID)