From 293913568e6a7a86fd1479e1cff8e2ecb58d6568 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 15:44:03 +0200 Subject: Adding upstream version 16.2. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/spi-spi-commit.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/src/sgml/html/spi-spi-commit.html (limited to 'doc/src/sgml/html/spi-spi-commit.html') diff --git a/doc/src/sgml/html/spi-spi-commit.html b/doc/src/sgml/html/spi-spi-commit.html new file mode 100644 index 0000000..807b964 --- /dev/null +++ b/doc/src/sgml/html/spi-spi-commit.html @@ -0,0 +1,23 @@ + +SPI_commit

SPI_commit

SPI_commit, SPI_commit_and_chain — commit the current transaction

Synopsis

+void SPI_commit(void)
+
+void SPI_commit_and_chain(void)
+

Description

+ SPI_commit commits the current transaction. It is + approximately equivalent to running the SQL + command COMMIT. After the transaction is committed, a + new transaction is automatically started using default transaction + characteristics, so that the caller can continue using SPI facilities. + If there is a failure during commit, the current transaction is instead + rolled back and a new transaction is started, after which the error is + thrown in the usual way. +

+ SPI_commit_and_chain is the same, but the new + transaction is started with the same transaction + characteristics as the just finished one, like with the SQL command + COMMIT AND CHAIN. +

+ These functions can only be executed if the SPI connection has been set as + nonatomic in the call to SPI_connect_ext. +

\ No newline at end of file -- cgit v1.2.3