MCPcopy Create free account
hub / github.com/documentdb/documentdb / bson_to_bytea

Function bson_to_bytea

pg_documentdb_core/src/io/bson_io.c:270–275  ·  view source on GitHub ↗

* bson_to_bytea returns bytea from an input bson. */

Source from the content-addressed store, hash-verified

268 * bson_to_bytea returns bytea from an input bson.
269 */
270Datum
271bson_to_bytea(PG_FUNCTION_ARGS)
272{
273 pgbson *bson = PG_GETARG_PGBSON(0);
274 PG_RETURN_BYTEA_P(CastPgbsonToBytea(bson));
275}
276
277
278/*

Callers

nothing calls this directly

Calls 1

CastPgbsonToByteaFunction · 0.85

Tested by

no test coverage detected