(sender byte, encodedLen int32, msg *Execute)
| 261 | } |
| 262 | |
| 263 | func (t *tracer) traceExecute(sender byte, encodedLen int32, msg *Execute) { |
| 264 | t.writeTrace(sender, encodedLen, "Execute", func() { |
| 265 | fmt.Fprintf(t.buf, "\t %s %d", traceDoubleQuotedString([]byte(msg.Portal)), msg.MaxRows) |
| 266 | }) |
| 267 | } |
| 268 | |
| 269 | func (t *tracer) traceFlush(sender byte, encodedLen int32, msg *Flush) { |
| 270 | t.writeTrace(sender, encodedLen, "Flush", nil) |
no test coverage detected