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

Function PgbsonInitObjectElementWriter

pg_documentdb_core/src/io/pgbson.c:1636–1645  ·  view source on GitHub ↗

* Initializes an elementwriter to write to the specified field of an object. */

Source from the content-addressed store, hash-verified

1634 * Initializes an elementwriter to write to the specified field of an object.
1635 */
1636void
1637PgbsonInitObjectElementWriter(pgbson_writer *objectWriter,
1638 pgbson_element_writer *elementWriter,
1639 const char *path, uint32_t pathLength)
1640{
1641 elementWriter->isArray = false;
1642 elementWriter->objectWriterState.objectWriter = objectWriter;
1643 elementWriter->objectWriterState.path = path;
1644 elementWriter->objectWriterState.pathLength = pathLength;
1645}
1646
1647
1648/*

Calls

no outgoing calls

Tested by

no test coverage detected