CopyBothResponse */
| 505 | |
| 506 | /* CopyBothResponse */ |
| 507 | static void |
| 508 | pqTraceOutputW(FILE *f, const char *message, int *cursor, int length) |
| 509 | { |
| 510 | fprintf(f, "CopyBothResponse\t"); |
| 511 | pqTraceOutputByte1(f, message, cursor); |
| 512 | |
| 513 | while (length > *cursor) |
| 514 | pqTraceOutputInt16(f, message, cursor); |
| 515 | } |
| 516 | |
| 517 | /* ReadyForQuery */ |
| 518 | static void |
no test coverage detected