SPI_finish
SPI_finish — отключить процедуру от менеджера SPI
Синтаксис
int SPI_finish(void)
Описание
SPI_finish закрывает текущее соединение с менеджером SPI. Эту функцию необходимо вызывать после завершения операций SPI, которые должны выполняться в текущем вызове процедуры. Однако если вы прерываете транзакцию, выполняя elog(ERROR), о закрытии соединения можно не беспокоиться. В этом случае SPI произведёт очистку автоматически.
Если SPI_finish вызывается в отсутствие установленного подключения, она возвращает SPI_ERROR_UNCONNECTED. В этом нет никакой серьёзной проблемы, это просто означает, что менеджеру SPI нечего делать.
Возвращаемое значение
SPI_OK_FINISHесли отключение выполнено корректно
SPI_ERROR_UNCONNECTEDесли вызывается из неподключённой процедуры
SPI_finish
SPI_finish — disconnect a procedure from the SPI manager
Synopsis
int SPI_finish(void)
Description
SPI_finish closes an existing connection to the SPI manager. You must call this function after completing the SPI operations needed during your procedure's current invocation. You do not need to worry about making this happen, however, if you abort the transaction via elog(ERROR). In that case SPI will clean itself up automatically.
If SPI_finish is called without having a valid connection, it will return SPI_ERROR_UNCONNECTED. There is no fundamental problem with this; it means that the SPI manager has nothing to do.
Return Value
SPI_OK_FINISHif properly disconnected
SPI_ERROR_UNCONNECTEDif called from an unconnected procedure