| 1676 | |
| 1677 | |
| 1678 | static void |
| 1679 | PgbsonExplainWriterWriteInteger(const char *name, const char *label, int32_t value, |
| 1680 | void *writer) |
| 1681 | { |
| 1682 | PgbsonWriterAppendInt32((pgbson_writer *) writer, name, -1, value); |
| 1683 | } |
| 1684 | |
| 1685 | |
| 1686 | static void |
nothing calls this directly
no test coverage detected