trouble with unique constraint

Поиск
Список
Период
Сортировка
От Khin, Gerald
Тема trouble with unique constraint
Дата
Msg-id BD02AF110737DE438CE0C85251D7DF5C461E8D@49FR-MEEVS1.me.corp.ids-scheer.com
обсуждение исходный текст
Ответы Re: trouble with unique constraint  ("A. Kretschmer" <andreas.kretschmer@schollglas.com>)
Список pgsql-general

The following SQL leads to a unique constraint violation error message (PostgreSQL 8.4.1).

 

 

create table test (val integer);

 

create unique index test_uni on test(val);

 

insert into test (val) values (1);

insert into test (val) values (2);

insert into test (val) values (3);

 

update test set val = val + 1;

 

 

But it works fine with Oracle, MSSQL and DB2. Any idea how to make it working with PostgreSQL as well?

 

 

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

Предыдущее
От: Alban Hertroys
Дата:
Сообщение: Fwd: Handling Numeric Datums in C
Следующее
От: Ben Campbell
Дата:
Сообщение: Re: problems maintaining boolean columns in a large table