Ejemplo n.º 1
0
/*
 *		int2vectorsend			- converts int2vector to binary format
 */
Datum
int2vectorsend(PG_FUNCTION_ARGS)
{
	return array_send(fcinfo);
}
Ejemplo n.º 2
0
/*
 * 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);
}
Ejemplo n.º 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);
}
Ejemplo n.º 4
0
Archivo: int.c Proyecto: colinet/sqlix
/*
 *		int2vectorsend			- converts int2_vector_s to binary format
 */
datum_t int2vectorsend(PG_FUNC_ARGS)
{
	return array_send(fcinfo);
}