コード例 #1
0
ファイル: int.c プロジェクト: rtzassociates/postgresql-8.2.23
/*
 *		int2vectorsend			- converts int2vector to binary format
 */
Datum
int2vectorsend(PG_FUNCTION_ARGS)
{
	return array_send(fcinfo);
}
コード例 #2
0
ファイル: pseudotypes.c プロジェクト: colinet/sqlix
/*
 * anyarray_send		- binary output routine for pseudo-type ANYARRAY.
 *
 * We may as well allow this, since array_send will in fact work.
 */
datum_t anyarray_send(PG_FUNC_ARGS)
{
	return array_send(fcinfo);
}
コード例 #3
0
/*
 * anyarray_send		- binary output routine for pseudo-type ANYARRAY.
 *
 * We may as well allow this, since array_send will in fact work.
 */
Datum
anyarray_send(PG_FUNCTION_ARGS)
{
	return array_send(fcinfo);
}
コード例 #4
0
ファイル: int.c プロジェクト: colinet/sqlix
/*
 *		int2vectorsend			- converts int2_vector_s to binary format
 */
datum_t int2vectorsend(PG_FUNC_ARGS)
{
	return array_send(fcinfo);
}