Re: Creating a function if it's not there in Postgres - Mailing list pgsql-general

From Joshua D. Drake
Subject Re: Creating a function if it's not there in Postgres
Date
Msg-id 464DEECB.1000003@commandprompt.com
Whole thread Raw
In response to Creating a function if it's not there in Postgres  ("Robert James" <srobertjames@gmail.com>)
List 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 by date:

Previous
From: "Robert James"
Date:
Subject: Creating a function if it's not there in Postgres
Next
From: Richard Huxton
Date:
Subject: Re: Large Database Restore