* Writes bson null to a nested array at the current index. */
| 1361 | * Writes bson null to a nested array at the current index. |
| 1362 | */ |
| 1363 | void |
| 1364 | PgbsonArrayWriterWriteNull(pgbson_array_writer *writer) |
| 1365 | { |
| 1366 | bson_value_t nullValue; |
| 1367 | memset(&nullValue, 0, sizeof(bson_value_t)); |
| 1368 | nullValue.value_type = BSON_TYPE_NULL; |
| 1369 | |
| 1370 | PgbsonArrayWriterWriteValue(writer, &nullValue); |
| 1371 | } |
| 1372 | |
| 1373 | |
| 1374 | /* |
no test coverage detected