writeCommandComplete sends a command completion message
(w io.Writer, tag string)
| 297 | data = append(data, 'C') |
| 298 | data = append(data, []byte(code)...) |
| 299 | data = append(data, 0) |
| 300 | |
| 301 | // Message |
| 302 | data = append(data, 'M') |
| 303 | data = append(data, []byte(message)...) |
| 304 | data = append(data, 0) |
| 305 | |
| 306 | // Terminator |
no test coverage detected