예제 #1
0
/*
 * pg_node_tree_send		- binary output routine for type PG_NODE_TREE.
 */
Datum
pg_node_tree_send(PG_FUNCTION_ARGS)
{
	return textsend(fcinfo);
}
예제 #2
0
/*
 *		varcharsend			- converts varchar to binary format
 */
Datum
varcharsend(PG_FUNCTION_ARGS)
{
	/* Exactly the same as textsend, so share code */
	return textsend(fcinfo);
}
예제 #3
0
파일: pseudotypes.c 프로젝트: colinet/sqlix
/*
 * pg_node_tree_send		- binary output routine for type PG_NODE_TREE.
 */
datum_t pg_node_tree_send(PG_FUNC_ARGS)
{
	return textsend(fcinfo);
}
예제 #4
0
Datum
email_send(PG_FUNCTION_ARGS)
{
	return textsend(fcinfo);
}