/* * int2vectorsend - converts int2vector to binary format */ Datum int2vectorsend(PG_FUNCTION_ARGS) { return array_send(fcinfo); }
/* * 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); }
/* * 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); }
/* * int2vectorsend - converts int2_vector_s to binary format */ datum_t int2vectorsend(PG_FUNC_ARGS) { return array_send(fcinfo); }