Re: Dropping a broken function

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Dropping a broken function
Дата
Msg-id 2567.974216832@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Dropping a broken function  ("Joonas Makkonen" <joonas.makkonen@infosto.fi>)
Список pgsql-novice
"Joonas Makkonen" <joonas.makkonen@infosto.fi> writes:
> 1) a type 'lo' was created
> 2) a function lo_oid(lo) was created
> 3) type 'lo' was dropped

Yeah, there's no interlock against that :-(

> Now the function cannot be dropped and the broken function is preventing
> dumping the db.

Find out the OID of the function, eg with

    select oid,* from pg_proc where proname = 'lo_oid';

and then zap its pg_proc entry by OID:

    delete from pg_proc where oid = whatever;

(Actually, any other unique WHERE condition will do, but OID is usually
the most reliable way, particularly for functions where there can be
multiple items with the same name.)

You'll need to be logged in as superuser to do this DELETE, of course.

            regards, tom lane

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

Предыдущее
От: "Mark, Terry"
Дата:
Сообщение: Renaming a database ?
Следующее
От: "Joonas Makkonen"
Дата:
Сообщение: Re: Dropping a broken function