ANALYZE on parent table results in an error "tuple already updated by self"

Поиск
Список
Период
Сортировка
От Manuel Rigger
Тема ANALYZE on parent table results in an error "tuple already updated by self"
Дата
Msg-id CA+u7OA69sgyCE0VhEpgZLBkR4X0frA2=ar8brntoH1vcvi-+WA@mail.gmail.com
обсуждение исходный текст
Ответы Re: ANALYZE on parent table results in an error "tuple alreadyupdated by self"  (Michael Paquier <michael@paquier.xyz>)
Re: ANALYZE on parent table results in an error "tuple alreadyupdated by self"  (Andres Freund <andres@anarazel.de>)
Список pgsql-bugs
Hi everyone,

In the example below, ANALYZE unexpectedly results in an error.

CREATE TABLE t0(c0 boolean , c1 integer);
CREATE TABLE t1(c0 boolean, c1 integer) INHERITS(t0);
INSERT INTO t0(c1) VALUES (0);
CREATE STATISTICS s0 ON c0, c1 FROM t0;
ANALYZE t0; -- unexpected: ERROR:  tuple already updated by self

I found this on the latest trunk version.

Best,
Manuel



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

Предыдущее
От: Jatinder Sandhu
Дата:
Сообщение: partition table slow planning
Следующее
От: Andres Freund
Дата:
Сообщение: Re: ANALYZE on parent table results in an error "tuple alreadyupdated by self"