From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
Cc: | PostgreSQL-patches <pgsql-patches(at)postgresql(dot)org>, Mike Mascari <mascarm(at)mascari(dot)com>, swm(at)linuxworld(dot)com(dot)au |
Subject: | Re: ON COMMIT temp table handling |
Date: | 2002-11-12 04:57:37 |
Message-ID: | 21140.1037077057@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-patches |
Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> writes:
> Tom Lane wrote:
>> Why is temp table handling in need of looking into xact.c's private
>> state? There is no other AtEOXact routine anywhere that does this.
>> ISTM either the above code is wrong, or every other AtEOXact routine
>> is wrong.
> I looked at that. The basic issue is that Gavin wants special handling
> for ON COMMIT, meaning he only wants to activate the ON COMMIT code when
> the transaction is committed and it is an end block, or it is not a
> commit but it is an abort.
I eventually realized that the problem is that his AtEOXact routine
needs to be split in two pieces. The actual ON COMMIT DROP or DELETE
ROWS action has to happen *before* we record transaction commit.
(Imagine what happens if we get an error while doing that part.)
But the cleanup of the list of on-commit objects should happen
afterwards. I think if you look at the version I committed this
afternoon, you'll be much happier.
> I have to say I am confused by the various
> TBLOCK values and their progression. I can't find any comments on them
> and the code seems contorted.
I think xact.c has more generality than it actually needs --- some of
the TBLOCK states could probably be eliminated. I'm not really excited
about rewriting it though; it works and has worked for years.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2002-11-12 05:00:20 | Re: ON COMMIT temp table handling |
Previous Message | Rod Taylor | 2002-11-12 04:40:12 | psql tab completion |