Re: UPDATE has a bug to update tables with an index of 2

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: UPDATE has a bug to update tables with an index of 2
Дата
Msg-id 20030517091355.S99020-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Re: UPDATE has a bug to update tables with an index of 2 columns  (Ian Barwick <barwick@gmx.net>)
Список pgsql-bugs
On Sat, 17 May 2003, Ian Barwick wrote:

> On Friday 16 May 2003 21:46, Andreas Schmitz wrote:
>
> > Please enter a FULL description of your problem:
> > ------------------------------------------------
> >
> > Short: UPDATE has a bug to update tables with an index of 2 columns
> (...)
> > update test2 set v2=3Dv2+2;
> > ERROR:  Duplizierter Wert kann nicht in =BBUnique=AB-Index uq_test
> >         eingef=FCgt werden
>
> -> "Cannot insert a duplicate key into unique index uq_test"
>
> I would contend this is not a bug but a feature (or at most
> not-yet-implemented functionality, i.e. no ability to defer
> constraints other than foreign keys).

IIRC, it's a known bug.  The constraint is checked at the wrong time, even
for non-deferred unique constraints the check is supposed to happen after
all the rows have been changed not as the rows are being changed.

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

Предыдущее
От: Andreas Schmitz
Дата:
Сообщение: Re: UPDATE has a bug to update tables with an index of 2 columns
Следующее
От: Andreas Schmitz
Дата:
Сообщение: Re: UPDATE has a bug to update tables with an index of 2 columns