Re: ERROR: type "temp_gc" already exists

From: Janning Vygen <vygen(at)gmx(dot)de>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: ERROR: type "temp_gc" already exists
Date: 2005-09-12 16:07:23
Message-ID: 200509121807.23441.vygen@gmx.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Am Samstag, 10. September 2005 18:05 schrieb Tom Lane:
> Janning Vygen <vygen(at)gmx(dot)de> writes:
> > i guess the table was dropped but not the corresponding type.
> > How can things like this happen?
>
> Corrupted pg_depend table maybe? You might try REINDEXing pg_depend
> to be on the safe side. Also please look to see if there are any
> relevant entries in it (look for objid = the type's OID, or refobjid
> = 16562879 which we can see was the table's OID).
>
> > How can i fix it? Can i just drop the type from pg_type?
>
> If there's no pg_depend entry then DROP TYPE should work. Otherwise
> you might have to resort to manually DELETEing the pg_type row.

Thanks for your detailed answer. I don't want to do anything wrong. To be
sure, i have some more questions:

- There is no entry in pg_depend. Should i just drop the entry from pg_type or
should i REINDEX anyway?

- Can i REINDEX pg_depend in normal operation mode or do i have to take
precautions mentioned in the docs? [1]

- How can things like this happen? Hardware failure? If yes, should i change
my harddisk?

kind regards,
Janning

[1] It's not clear to me if pg_depend is a "shared system catalog" because the
docs say

"any of the shared system catalogs (pg_database,
pg_group, pg_shadow, or pg_tablespace)"

Maybe the iteration is final, maybe it shows only examples)

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2005-09-12 16:37:06 Re: If an index is based on 3 columns will a query using two of the columns utilize the index?
Previous Message Greg Stark 2005-09-12 15:55:42 Re: If an index is based on 3 columns will a query using two of the columns utilize the index?