Re: New VACUUM FULL crashes on temp relations - Mailing list pgsql-hackers

From Takahiro Itagaki
Subject Re: New VACUUM FULL crashes on temp relations
Date
Msg-id 20100202094519.9A64.52131E4D@oss.ntt.co.jp
Whole thread Raw
In response to New VACUUM FULL crashes on temp relations  (Simon Riggs <simon@2ndQuadrant.com>)
Responses Re: New VACUUM FULL crashes on temp relations  (Takahiro Itagaki <itagaki.takahiro@oss.ntt.co.jp>)
List 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 by date:

Previous
From: Takahiro Itagaki
Date:
Subject: Re: Largeobject Access Controls (r2460)
Next
From: KaiGai Kohei
Date:
Subject: Re: [BUG?] strange behavior in ALTER TABLE ... RENAME TO on inherited columns