Close(F) or CommandComplete(B) */
| 258 | |
| 259 | /* Close(F) or CommandComplete(B) */ |
| 260 | static void |
| 261 | pqTraceOutputC(FILE *f, bool toServer, const char *message, int *cursor) |
| 262 | { |
| 263 | if (toServer) |
| 264 | { |
| 265 | fprintf(f, "Close\t"); |
| 266 | pqTraceOutputByte1(f, message, cursor); |
| 267 | pqTraceOutputString(f, message, cursor, false); |
| 268 | } |
| 269 | else |
| 270 | { |
| 271 | fprintf(f, "CommandComplete\t"); |
| 272 | pqTraceOutputString(f, message, cursor, false); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | /* Describe(F) or DataRow(B) */ |
| 277 | static void |
no test coverage detected