Re: Drop Schema Error

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Drop Schema Error
Дата
Msg-id 12066.1296320275@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Drop Schema Error  ("Bradley Holbrook" <operations_bradley@servillian.ca>)
Ответы Re: Drop Schema Error  (Viktor Bojović <viktor.bojovic@gmail.com>)
Список pgsql-admin
"Bradley Holbrook" <operations_bradley@servillian.ca> writes:
> DROP SCHEMA "_old_permissions" CASCADE;
> NOTICE:  drop cascades to 2 other objects
> DETAIL:  drop cascades to function 17059
> drop cascades to function 17060
> [Err] ERROR:  cache lookup failed for function 17060

> What is this trying to tell me?

Apparently you've got some dangling references in pg_depend, ie those
functions were dropped already but the pg_depend entries for them were
not cleaned up.

We've heard similar reports before (usually about temp tables not
functions, IIRC) but never been able to reproduce them or identify a
cause.  What PG version is this?  Have you done anything funny to that
schema or its contents, or had any crashes around the time of
manipulating either?

As far as cleaning up goes, the thing to do would be to manually delete
the relevant pg_depend entries --- for this one, an entry with objid =
17060 is probably what you're looking for.  But it would be good to try
to figure out how you got into this state first.

            regards, tom lane

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

Предыдущее
От: "Bradley Holbrook"
Дата:
Сообщение: Drop Schema Error
Следующее
От: Viktor Bojović
Дата:
Сообщение: Re: Drop Schema Error