Re: Nested Stored Procedures - ERROR: invalid transaction termination 2D000

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Christophe Pettus <xof(at)thebuild(dot)com>
Cc: Kevin Stephenson <kjs714(at)hotmail(dot)com>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Nested Stored Procedures - ERROR: invalid transaction termination 2D000
Date: 2025-03-23 01:12:05
Message-ID: 462135.1742692325@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Christophe Pettus <xof(at)thebuild(dot)com> writes:
> That's an interesting question. It appears to be a no-op, although a quick scan of the code doesn't reveal why. Here's an illustrative test case:

This test case would be less confusing if the outer handler did

RAISE NOTICE 'in outer exception handler: %', sqlerrm;

With that, the test shows

regression=# call outer();
NOTICE: in outer exception handler: invalid transaction termination
CALL

What is happening is that inner() does PERFORM 1/0, fails and bounces
out to its exception handler, and then the ROLLBACK throws an error
because we're still inside outer()'s subtransaction. So inner()'s
first INSERT has been rolled back and the second one is never
reached. Back at outer()'s exception handler, we trap the error
from ROLLBACK, abort that subtransaction, and go on our merry way,
allowing the original INSERT (which was outside both subtransactions)
to complete.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Igor Korot 2025-03-23 01:47:05 Re: Determine server version from psql script
Previous Message Tom Lane 2025-03-23 01:04:19 Re: query_id: jumble names of temp tables for better pg_stat_statement UX