Re: Stop execution without ERROR - Mailing list pgsql-general

From David Johnston
Subject Re: Stop execution without ERROR
Date
Msg-id 1381886890392-5774689.post@n5.nabble.com
Whole thread Raw
In response to Stop execution without ERROR  (James Sewell <james.sewell@lisasoft.com>)
List pgsql-general
james.sewell wrote
> Hello all,
>
> Let's say I'm running the following SQL script via psql -f
>
> BEGIN
> \set ON_ERROR_STOP
> SELECT myFunction();
> CREATE TABLE x(id int);
> END;
>
> Is there anything I can do in myFunction which will:
>
> a) Stop execution of the script so that x will not be created
> b) Not throw an error (return value of 0, no ERROR in output)
>
> I am currently using an EXCEPTION, which satisfies a, but not b.

No.  To accomplish that kind of flow control requires that you use a
procedural language.  pl/pgsql can serve that purpose.  You can use a
function or a DO block to implement.  Or code a shell script.

David J.





--
View this message in context:
http://postgresql.1045698.n5.nabble.com/Stop-execution-without-ERROR-tp5774688p5774689.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.


pgsql-general by date:

Previous
From: James Sewell
Date:
Subject: Stop execution without ERROR
Next
From: Karsten Hilbert
Date:
Subject: Re: Stop execution without ERROR