Re: Transaction manipulation commands in user defined c functions?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Transaction manipulation commands in user defined c functions?
Дата
Msg-id 26206.1276100087@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Transaction manipulation commands in user defined c functions?  (Michael Hadjivassiliou <sporegnosis@gmail.com>)
Ответы Re: Transaction manipulation commands in user defined c functions?  (Michael Hadjivassiliou <sporegnosis@gmail.com>)
Список pgsql-novice
Michael Hadjivassiliou <sporegnosis@gmail.com> writes:
> I've been searching for a way to do transaction blocks and savepoints within
> a user defined c function. Apparently the docs state that if an SPI function
> throws an error, control goes out of the function and the current
> transaction is rolled back, yet it hints that you can do subtransactions
> within a c function.

Well, sure.  Look at the way that plpgsql implements a BEGIN/EXCEPTION
block, for example.  You need to establish a subtransaction and have
a TRY/CATCH block to catch the error and clean up.

But having said that ... it's pretty messy and I wonder why you are
wanting to do this in a C function.  Your code would be a lot more
future-proof in plpgsql, say.  And if you're invoking operations as
heavyweight as a subtransaction, you're certainly not going to get any
noticeable performance win from using C.

            regards, tom lane

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

Предыдущее
От: "coviolo@libero.it"
Дата:
Сообщение: Re: problem with variable
Следующее
От: Michael Hadjivassiliou
Дата:
Сообщение: Re: Transaction manipulation commands in user defined c functions?