This is an automated email from the ASF dual-hosted git repository.

reshke pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudberry.git

commit 9b0c67e6b25d1a4d8c434dca643346e5d6c4299b
Author: Tom Lane <[email protected]>
AuthorDate: Wed Jun 22 12:11:59 2022 -0400

    Fix SPI's handling of errors during transaction commit.
    
    SPI_commit previously left it up to the caller to recover from any error
    occurring during commit.  Since that's complicated and requires use of
    low-level xact.c facilities, it's not too surprising that no caller got
    it right.  Let's move the responsibility for cleanup into spi.c.  Doing
    that requires redefining SPI_commit as starting a new transaction, so
    that it becomes equivalent to SPI_commit_and_chain except that you get
    default transaction characteristics instead of preserving the prior
    transaction's characteristics.  We can make this pretty transparent
    API-wise by redefining SPI_start_transaction() as a no-op.  Callers
    that expect to do something in between might be surprised, but
    available evidence is that no callers do so.
    
    Having made that API redefinition, we can fix this mess by having
    SPI_commit[_and_chain] trap errors and start a new, clean transaction
    before re-throwing the error.  Likewise for SPI_rollback[_and_chain].
    Some cleanup is also needed in AtEOXact_SPI, which was nowhere near
    smart enough to deal with SPI contexts nested inside a committing
    context.
    
    While plperl and pltcl need no changes beyond removing their now-useless
    SPI_start_transaction() calls, plpython needs some more work because it
    hadn't gotten the memo about catching commit/rollback errors in the
    first place.  Such an error resulted in longjmp'ing out of the Python
    interpreter, which leaks Python stack entries at present and is reported
    to crash Python 3.11 altogether.  Add the missing logic to catch such
    errors and convert them into Python exceptions.
    
    This is a back-patch of commit 2e517818f.  That's now aged long enough
    to reduce the concerns about whether it will break something, and we
    do need to ensure that supported branches will work with Python 3.11.
    
    Peter Eisentraut and Tom Lane
    
    Discussion: 
https://postgr.es/m/[email protected]
    Discussion: https://postgr.es/m/[email protected]
---
 src/backend/executor/spi.c | 10 ----------
 src/include/executor/spi.h |  1 -
 2 files changed, 11 deletions(-)

diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c
index 4a2ddd5dff3..5db53b125ee 100644
--- a/src/backend/executor/spi.c
+++ b/src/backend/executor/spi.c
@@ -442,16 +442,6 @@ SPI_rollback_and_chain(void)
        _SPI_rollback(true);
 }
 
-/*
- * SPICleanup is a no-op, kept for backwards compatibility. We rely on
- * AtEOXact_SPI to cleanup. Extensions should not (need to) fiddle with the
- * internal SPI state directly.
- */
-void
-SPICleanup(void)
-{
-}
-
 /*
  * Clean up SPI state at transaction commit or abort.
  */
diff --git a/src/include/executor/spi.h b/src/include/executor/spi.h
index ef1964b709d..fc60fdb9584 100644
--- a/src/include/executor/spi.h
+++ b/src/include/executor/spi.h
@@ -205,7 +205,6 @@ extern void SPI_commit_and_chain(void);
 extern void SPI_rollback(void);
 extern void SPI_rollback_and_chain(void);
 
-extern void SPICleanup(void);
 extern void AtEOXact_SPI(bool isCommit);
 extern void AtEOSubXact_SPI(bool isCommit, SubTransactionId mySubid);
 extern bool SPI_inside_nonatomic_context(void);


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to