Re: SQL-Invoked Procedures for 8.1

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: SQL-Invoked Procedures for 8.1
Дата
Msg-id 12345.1095976072@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: SQL-Invoked Procedures for 8.1  (Greg Stark <gsstark@mit.edu>)
Ответы Re: SQL-Invoked Procedures for 8.1  (Peter Mount <peter@retep.org.uk>)
Список pgsql-hackers
Greg Stark <gsstark@mit.edu> writes:
> Tom Lane <tgl@sss.pgh.pa.us> writes:
>> however commit that and let the procedure launch its own transactions
>> (compare to VACUUM, db-wide CLUSTER, etc) once we have read the
>> procedure body from the catalogs and done any pre-parsing we want to do.

> Well I guess I'm wondering whether there's any need to commit at all.
> If you do commit then you wouldn't be able to do something like:

> CREATE PROCEDURE terminate_transaction()
>  COMMIT;
> END PROCEDURE

By commit I was thinking of CommitTransactionCommand, which isn't going
to exit a pre-existing transaction block, so I'm not sure that we are
disagreeing.

One interesting point is whether it's possible for one procedure to call
another, and if so what that means for the semantics.  Is the inner
procedure allowed to commit a transaction started by the outer one?
        regards, tom lane


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

Предыдущее
От: Greg Stark
Дата:
Сообщение: Re: SQL-Invoked Procedures for 8.1
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: SQL-Invoked Procedures for 8.1