Re: Deferrable Unique Constraints

Поиск
Список
Период
Сортировка
От Greg Stark
Тема Re: Deferrable Unique Constraints
Дата
Msg-id 87vf9jyl16.fsf@stark.xeocode.com
обсуждение исходный текст
Ответ на Re: Deferrable Unique Constraints  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Deferrable Unique Constraints  (Neil Conway <neilc@samurai.com>)
Список pgsql-hackers
Tom Lane <tgl@sss.pgh.pa.us> writes:

> Greg Stark <gsstark@mit.edu> writes:
> > Off the top of my head it seems the way to go about doing this would be to
> > simply not insert the records in the index until commit time. This doesn't
> > actually sound so hard, is there any problem with this approach?
> 
> Yeah:
>     begin;
>     insert into foo (key, ...) values (33, ...);
>     select * from foo where key = 33;
>     ...
> 
> If the SELECT uses an indexscan it will fail to find the just-inserted
> row.

Well presumably you would need a non-unique index created for query execution
purposes. The unique index would be purely for enforcing the constraint.

-- 
greg



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

Предыдущее
От: "Serguei A. Mokhov"
Дата:
Сообщение: Re: Patent issues and 8.1
Следующее
От: Tom Lane
Дата:
Сообщение: Re: bug w/ cursors and savepoints