(self, fmt)
| 173 | return self.read(length) |
| 174 | |
| 175 | def read_struct(self, fmt): |
| 176 | s = struct.Struct(fmt) |
| 177 | result = s.unpack_from(self._data, self._position) |
| 178 | self._position += s.size |
| 179 | return result |
| 180 | |
| 181 | def is_ok_packet(self): |
| 182 | # https://dev.mysql.com/doc/internals/en/packet-OK_Packet.html |
no outgoing calls
no test coverage detected