示例#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
/*
 * 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);
}