Re: BUG #2812: Transaction is aborted after error - Mailing list pgsql-bugs

From Alvaro Herrera
Subject Re: BUG #2812: Transaction is aborted after error
Date
Msg-id 20061206224247.GJ30502@alvh.no-ip.org
Whole thread Raw
In response to BUG #2812: Transaction is aborted after error  ("Alex Piyevsky" <Alex_Piyevsky@ibi.com>)
List pgsql-bugs
Alex Piyevsky wrote:

> We issue a command which drops the existing table and recreates the table
> under the same name, all in one transaction.  If the table does not
> previously exist, an error message is returned for the drop command and the
> transaction aborts with the following:
>
> current transaction is aborted, commands ignored until end of transaction
> block

This is the intended behavior.  In 8.2 you can use "DROP TABLE IF
EXISTS".  In previous versions you can set a savepoint before the DROP
TABLE; or you can do the DROP TABLE outside the transaction.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

pgsql-bugs by date:

Previous
From: "Alex Piyevsky"
Date:
Subject: BUG #2812: Transaction is aborted after error
Next
From: Tom Lane
Date:
Subject: Re: BUG #2811: Error determining param type in prepared statement of unused variable