Re: Creating a function if it's not there in Postgres

Поиск
Список
Период
Сортировка
От Joshua D. Drake
Тема Re: Creating a function if it's not there in Postgres
Дата
Msg-id 464DEECB.1000003@commandprompt.com
обсуждение исходный текст
Ответ на Creating a function if it's not there in Postgres  ("Robert James" <srobertjames@gmail.com>)
Список pgsql-general
Robert James wrote:
> I use a set of DDL scripts to automatically create the database for an app.
>
> I need to create certain functions (from contrib), if they're not there
> already.  If they are there, I don't want to DROP or REPLACE them, since
> they may be used in certain indexes and triggers.
>
> Is there a way to only CREATE a function if it is not defined already?
> Is there a simple way to see if the function is defined?
>
> (I don't want to just try creating it and letting it fail, since the DDL
> runs in a transaction).

instead of create use CREATE OR REPLACE


>
> Thank you.
>


--

       === The PostgreSQL Company: Command Prompt, Inc. ===
Sales/Support: +1.503.667.4564 || 24x7/Emergency: +1.800.492.2240
Providing the most comprehensive  PostgreSQL solutions since 1997
              http://www.commandprompt.com/

Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
PostgreSQL Replication: http://www.commandprompt.com/products/


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

Предыдущее
От: "Robert James"
Дата:
Сообщение: Creating a function if it's not there in Postgres
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: Large Database Restore