create unique index doesn't work properly

Поиск
Список
Период
Сортировка
От Domingo Alvarez Duarte
Тема create unique index doesn't work properly
Дата
Msg-id 3AFDB5A4.8E921F09@dad-it.com
обсуждение исходный текст
Ответы Re: create unique index doesn't work properly
Список pgsql-bugs
when executing the code bellow:

---
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" terminate sucefully, if there isn't "null" values it works
fine.

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