How does PostgreSQL treat null values in unique composite constraints??? - Mailing list pgsql-general

From P G
Subject How does PostgreSQL treat null values in unique composite constraints???
Date
Msg-id 20030408181235.61841.qmail@web13309.mail.yahoo.com
Whole thread Raw
Responses Re: How does PostgreSQL treat null values in unique composite  (Dennis Gearon <gearond@cvc.net>)
List pgsql-general
I have the following table with a unique constraint.

create table testt (
id int,
aa int,
bb int,
constraint pk_testt primary key (id),
constraint cons_testt unique (aa,bb));

Let's say I insert the following:

insert into testt values (1,2,null);
insert into testt values (2,2,null);

I thought this should fail because of the unique
constraint, but it doesn't.  How does PostgreSQL view
the null values in this constraint?  Will someone
explain why I am allowed to make this insertion?

TIA.

__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - File online, calculators, forms, and more
http://tax.yahoo.com


pgsql-general by date:

Previous
From: Dennis Gearon
Date:
Subject: Re: transfer data
Next
From: Medi Montaseri
Date:
Subject: Re: Arrays ... need clarification....