SPI_copytuple

Name

SPI_copytuple --  Makes copy of tuple in upper Executor context 上位エグゼキュータのコンテキスト内のタプルのコピーを作成します。

Synopsis

SPI_copytuple(tuple)

入力

HeapTuple tuple

Input tuple to be copied

コピー対象のタプル。

出力

HeapTuple

Copied tuple

コピーされたタプル。

non-NULL if tuple is not NULL and the copy was successful
非 NULL 引数 tuple が NULL で なく、コピーが成功した場合。
NULL only if tuple is NULL
NULL 引数 tuple が NULL の場 合のみ。

説明

SPI_copytuple makes a copy of tuple in upper Executor context. See the section on Memory Management.

SPI_copytuple は上位エグゼキュータのコンテキスト 内のタプルのコピーを作成します。メモリ管理の項を参照して下さい。

使い方

TBD