* BuildResponseMessage func builds the pgbson response for the collStats() command */
| 1033 | * BuildResponseMessage func builds the pgbson response for the collStats() command |
| 1034 | */ |
| 1035 | static pgbson * |
| 1036 | BuildResponseMessage(CollStatsResult *result) |
| 1037 | { |
| 1038 | pgbson_writer writer; |
| 1039 | PgbsonWriterInit(&writer); |
| 1040 | |
| 1041 | PgbsonWriterAppendUtf8(&writer, "ns", 2, result->ns); |
| 1042 | WriteCoreStorageStats(result, &writer); |
| 1043 | PgbsonWriterAppendInt32(&writer, "ok", 2, result->ok); |
| 1044 | |
| 1045 | return PgbsonWriterGetPgbson(&writer); |
| 1046 | } |
| 1047 | |
| 1048 | |
| 1049 | /* |
no test coverage detected