/* * pg_node_tree_send - binary output routine for type PG_NODE_TREE. */ Datum pg_node_tree_send(PG_FUNCTION_ARGS) { return textsend(fcinfo); }
/* * varcharsend - converts varchar to binary format */ Datum varcharsend(PG_FUNCTION_ARGS) { /* Exactly the same as textsend, so share code */ return textsend(fcinfo); }
/* * pg_node_tree_send - binary output routine for type PG_NODE_TREE. */ datum_t pg_node_tree_send(PG_FUNC_ARGS) { return textsend(fcinfo); }
Datum email_send(PG_FUNCTION_ARGS) { return textsend(fcinfo); }