Error during hash index scans can cause postgres halt!

Поиск
Список
Период
Сортировка
От ykhuang
Тема Error during hash index scans can cause postgres halt!
Дата
Msg-id fqqco2$3mn$1@news.hub.org
обсуждение исходный текст
Ответы Re: Error during hash index scans can cause postgres halt!  ("Heikki Linnakangas" <heikki@enterprisedb.com>)
Список pgsql-bugs
recurred through deadlock.

client1:
 create table test(a int);
 create index id on test using hash(a);
 insert into test values(1);
 insert into test values(2);
 set enable_seqscan=off;
 begin;
 update test set a=a+1 where a=1;

client2:
 set enable_seqscan=off;
 begin;
 update test set a=a+1 where a=2;

client1:
  update test set a=a+1 where a=2;

client2:
 update test set a=a+1 where a=1;

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Problem identifying constraints which should not be inherited
Следующее
От: ""
Дата:
Сообщение: BUG #4018: Installation failure