SPI_finish <refpurpose>disconnect a C function from the SPI manager</refpurpose> — C関数をSPIマネージャから切断する
int SPI_finish(void)
<function>SPI_finish</function> closes an existing connection to
the SPI manager. You must call this function after completing the
SPI operations needed during your C function's current invocation.
You do not need to worry about making this happen, however, if you
abort the transaction via <literal>elog(ERROR)</literal>. In that
case SPI will clean itself up automatically.
SPI_finish
は既存のSPIマネージャへの接続を切断します。
C関数の現在の呼び出し期間内で必要なSPI操作が完了した後この関数を呼び出さなければなりません。
しかし、elog(ERROR)
経由でトランザクションを中断させる場合は、この関数が何を行うかを気にする必要はありません。
その場合、SPIは自動的に自身を整理します。
SPI_OK_FINISH
if properly disconnected 適切に切断された場合。
SPI_ERROR_UNCONNECTED
if called from an unconnected C function 未接続のC関数から呼び出された場合