Re: createdb script bug in 7.3RC2?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: createdb script bug in 7.3RC2?
Дата
Msg-id 18708.1038417996@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: createdb script bug in 7.3RC2?  (Jean-Christian Imbeault <jc@mega-bucks.co.jp>)
Ответы Re: createdb script bug in 7.3RC2?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Jean-Christian Imbeault <jc@mega-bucks.co.jp> writes:
> As a follow-up I get an error when dropping plpgsql and then trying to
> re-create it ...

> $ psql JC -c "drop language plpgsql cascade"
> NOTICE:  Drop cascades to function cancell_all_li()
> NOTICE:  Drop cascades to trigger insert_invoices on table invoices
> NOTICE:  Drop cascades to function update_invoice_price()
> NOTICE:  Drop cascades to trigger update_invoice_li_price on table
> invoice_li
> NOTICE:  Drop cascades to function max(date,date,date)
> DROP LANGUAGE
> $ createlang plpgsql JC
> ERROR:  function plpgsql_call_handler already exists with same argument
> types
> createlang: language installation failed

> Once a language is dropped I should be able to re-add it no? Or isn't
> dropping it enough?

DROP LANGUAGE only drops the pg_language entry, not the call handler.

I think the dropdb script would drop the handler too, but you didn't
do that.

            regards, tom lane

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

Предыдущее
От: Jean-Christian Imbeault
Дата:
Сообщение: Re: createdb script bug in 7.3RC2?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: createdb script bug in 7.3RC2?