Re: New VACUUM FULL crashes on temp relations

Поиск
Список
Период
Сортировка
От Takahiro Itagaki
Тема Re: New VACUUM FULL crashes on temp relations
Дата
Msg-id 20100202094519.9A64.52131E4D@oss.ntt.co.jp
обсуждение исходный текст
Ответ на New VACUUM FULL crashes on temp relations  (Simon Riggs <simon@2ndQuadrant.com>)
Ответы Re: New VACUUM FULL crashes on temp relations  (Takahiro Itagaki <itagaki.takahiro@oss.ntt.co.jp>)
Список pgsql-hackers
Simon Riggs <simon@2ndQuadrant.com> wrote:

> TRAP: FailedAssertion("!(typeNamespace == typ->typnamespace)", File:
> "pg_type.c", Line: 658)
> 
> Test case attached, repeated, consistent failure on CVS HEAD.

I see the same assertion failure on 8.4.2, too.
I'll investigating it...

-- minimum reproducible pattern
drop table if exists footemp;
create temp table footemp (col1 serial, col2 text);
create index footemp_col1_idx on footemp (col1);
cluster footemp using footemp_col1_idx;

Regards,
---
Takahiro Itagaki
NTT Open Source Software Center




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

Предыдущее
От: Takahiro Itagaki
Дата:
Сообщение: Re: Largeobject Access Controls (r2460)
Следующее
От: KaiGai Kohei
Дата:
Сообщение: Re: [BUG?] strange behavior in ALTER TABLE ... RENAME TO on inherited columns