Re: Strange error related to temporary tables - Mailing list pgsql-general

From Tom Lane
Subject Re: Strange error related to temporary tables
Date
Msg-id 3895.1157120820@sss.pgh.pa.us
Whole thread Raw
In response to Re: Strange error related to temporary tables  (Csaba Nagy <nagy@ecircle-ag.com>)
Responses Re: Strange error related to temporary tables  (Csaba Nagy <nagy@ecircle-ag.com>)
List pgsql-general
Csaba Nagy <nagy@ecircle-ag.com> writes:
> I executed what you suggest below, see the results below. Short
> conclusion: the type is there in pg_type, the relation is not there in
> pg_class. Is there anything I should look for more ?

> test03=> select oid, xmin from pg_type where typname = 'temp_report';
>    oid    |   xmin
> ----------+-----------
>  58293995 | 220215039
> (1 row)

Is this xmin quite a bit older than what you get for a freshly-created
temp table?  Can you find any entries in pg_depend that show the above
OID as either objid or refobjid?

Also, it's fairly likely (not certain) that the table associated with
this pg_type entry had OID one less, ie 58293994.  Can you find any
trace of that OID in pg_depend, or in pg_class for that matter?

            regards, tom lane

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Trigger (Transaction related)
Next
From: Csaba Nagy
Date:
Subject: Re: Strange error related to temporary tables