Re: BUG #18367: Cannot drop schema

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #18367: Cannot drop schema
Дата
Msg-id 2135024.1709057683@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #18367: Cannot drop schema  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #18367: Cannot drop schema  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Список pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> When trying to drop a schema using DROP SCHEMA "brokenSchema"; 

> I'm facing the following error:
> requested object address for unsupported object class 2: text result ""

> The schema is empty from any table, type, trigger...

That shouldn't happen :-(.  I am guessing the cause is a corrupt
entry in pg_depend.  Class 2 is OCLASS_TYPE, so apparently some
type got dropped but its pg_depend entry wasn't cleaned out, so
DROP SCHEMA thinks there's still a dependent object.

I would try to pg_dump the database, and if you can do that and
reload successfully then discard the original.  If you've found
one bit of catalog corruption there's likely more.

            regards, tom lane



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

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #18368: order by collation doesn't work as expected for the second column in the ORDER BY list
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: BUG #18367: Cannot drop schema