Re: ANALYZE: ERROR: tuple already updated by self

Поиск
Список
Период
Сортировка
От Justin Pryzby
Тема Re: ANALYZE: ERROR: tuple already updated by self
Дата
Msg-id 20190618235755.GA17759@telsasoft.com
обсуждение исходный текст
Ответ на Re: ANALYZE: ERROR: tuple already updated by self  (Justin Pryzby <pryzby@telsasoft.com>)
Список pgsql-hackers
On Tue, Jun 18, 2019 at 06:48:58PM -0500, Justin Pryzby wrote:
> On Tue, Jun 18, 2019 at 06:12:33PM -0500, Justin Pryzby wrote:
> > ts=# ANALYZE sectors;
> > ERROR:  XX000: tuple already updated by self
> > LOCATION:  simple_heap_update, heapam.c:4613

> Ah: the table is an inheritence parent.  If I uninherit its child, there's no
> error during ANALYZE.

postgres=# CREATE TABLE t(i int,j int); CREATE TABLE u() INHERITS (t); CREATE STATISTICS t_stats ON i,j FROM t; INSERT
INTOt VALUES(1,1);ANALYZE t;
 
CREATE TABLE
CREATE TABLE
CREATE STATISTICS
INSERT 0 1
ERROR:  tuple already updated by self




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

Предыдущее
От: Justin Pryzby
Дата:
Сообщение: Re: ANALYZE: ERROR: tuple already updated by self
Следующее
От: Peter Geoghegan
Дата:
Сообщение: Re: ANALYZE: ERROR: tuple already updated by self