| 1642 | |
| 1643 | |
| 1644 | static void |
| 1645 | PgbsonExplainWriterWriteBool(const char *name, bool value, void *writer) |
| 1646 | { |
| 1647 | PgbsonWriterAppendBool((pgbson_writer *) writer, name, -1, value); |
| 1648 | } |
| 1649 | |
| 1650 | |
| 1651 | static void |
nothing calls this directly
no test coverage detected