Re: ERROR: current transaction is aborted, queries ignored

Поиск
Список
Период
Сортировка
От scott.marlowe
Тема Re: ERROR: current transaction is aborted, queries ignored
Дата
Msg-id Pine.LNX.4.33.0307171150110.32527-100000@css120.ihs.com
обсуждение исходный текст
Ответ на ERROR: current transaction is aborted, queries ignored until end of transaction block  (Annabelle Desbois <a.desbois@regie-france.com>)
Ответы Re: ERROR: current transaction is aborted, queries ignored  (Greg Stark <gsstark@mit.edu>)
Re: ERROR: current transaction is aborted, queries ignored  (Annabelle Desbois <a.desbois@regie-france.com>)
Список pgsql-general
On Thu, 17 Jul 2003, Annabelle Desbois wrote:

> Hello,
>
> "ERROR:  current transaction is aborted, queries ignored until end of
> transaction block"
> This error occurs after a ROLLBACK in a PHP script.
> All the next queries fail, so what's wrong ?
> Why the ROLLBACK isn't the end of a transaction block ?
>
> Apache 1.3.26
> PHP 4.3.0
> PostgreSQL 7.3.1

Are you sure the rollback is happening?  We might need to see some code,
not sure.

What I think you're saying is that this happens:

begin;
query1;
query2;
query3;
rollback;
ERROR:  current transaction is aborted,
query4;  <- This query now fails

IS that the sequence you're describing?


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: selects during vacuum
Следующее
От: Vivek Khera
Дата:
Сообщение: Re: dump_all/restore times?