makeCommandTag makes a CommandTag. It does not retain a reference to buf or buf's underlying memory.
(buf []byte)
| 2099 | |
| 2100 | // makeCommandTag makes a CommandTag. It does not retain a reference to buf or buf's underlying memory. |
| 2101 | func (pgConn *PgConn) makeCommandTag(buf []byte) CommandTag { |
| 2102 | return CommandTag{s: string(buf)} |
| 2103 | } |
| 2104 | |
| 2105 | // enterPotentialWriteReadDeadlock must be called before a write that could deadlock if the server is simultaneously |
| 2106 | // blocked writing to us. |
no outgoing calls
no test coverage detected