Re: SPI_ERROR_TRANSACTION [PostgreSQL 8.3]

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: SPI_ERROR_TRANSACTION [PostgreSQL 8.3]
Дата
Msg-id 20090428151616.GM10358@alvh.no-ip.org
обсуждение исходный текст
Ответ на SPI_ERROR_TRANSACTION [PostgreSQL 8.3]  (Daroslav <daroslav@g.pl>)
Список pgsql-general
Daroslav wrote:
>
> Hi
>
> As a newbie in PL/pgSQL I have faced an error SPI_ERROR_TRANSACTION which
> was raised always when I have tried to launch following function with
> uncommented keywords SAVEPOINT, SET TRANSACTION and COMMIT(when commented,
> function works fine):

Yes, you cannot use those constructs in plpgsql (or any other PL for
that matter; it's a limitation of the underlying layer).  You need to
use BEGIN/EXCEPTION/END blocks instead.

Also, keep in mind that if you RAISE EXCEPTION, the current transaction
is always rolled back, so the RETURN FALSE in your function would never be
reached.

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

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

Предыдущее
От: Raymond O'Donnell
Дата:
Сообщение: Re: What may cause - Connection rejected: FATAL: Ident authentication failed for user?
Следующее
От: "Katz, Lawrence"
Дата:
Сообщение: "ERROR: 42883: could not identify an ordering operator for type polygon"