select open change scope Open full search

PG.CENTER connects PostgreSQL documentation, reference, and ecosystem knowledge. Maintained by Pigsty.

Supported versions: Current (18) / 17 / 16 / 15 / 14
Development versions: 19 / devel
Unsupported versions: 13 / 12 / 11
Historical version. PostgreSQL 11 reached end of support in November 2023. See the current version for supported releases.

SPI_commit

SPI_commit — commit the current transaction

Synopsis

void SPI_commit(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.

This function can only be executed if the SPI connection has been set as nonatomic in the call to SPI_connect_ext.

Report a documentation issue

Read the upstream documentation. For corrections, first check the current version.