bug in "create unique index"

Поиск
Список
Период
Сортировка
От Domingo Alvarez Duarte
Тема bug in "create unique index"
Дата
Msg-id 3AFDB40F.AFC960BB@dad-it.com
обсуждение исходный текст
Ответы Re: bug in "create unique index"  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Список pgsql-hackers
when creating a index unique in a table that accept nulls the unique
constraint doesn't work. 

Example:
---
create table test_unique(i1 integer, i2 integer, unique(i1,i2);
insert into test_unique(1,null);
insert into test_unique(1,null);
insert into test_unique(1,null);
---
all "inserts" above insert sucefully.


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Problem with a rule on upgrade to v7.1.1
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: 7.2 items