Re: nested transactions

From: Hans-Jürgen Schönig <postgres(at)cybertec(dot)at>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: nested transactions
Date: 2002-11-28 08:22:09
Message-ID: 3DE5D231.7030304@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Is there going to be a way to use transactions inside transactions of
transactions?
In other words:

BEGIN;
BEGIN;
BEGIN;
BEGIN;

COMMIT;
COMMIT;
COMMIT;
COMMIT;

Is there a way to have some sort of recursive solution with every
transaction but the first one being a child transaction?
Is there a way to implement that without too much extra effort?
I just curious how that could be done.

Hans

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Darko Prenosil 2002-11-28 12:17:18 Croatian language file for 7.3
Previous Message Matthew T. O'Connor 2002-11-28 08:11:33 Re: Auto Vacuum Daemon (again...)