(self)
| 197 | return self._data[0] == 1 |
| 198 | |
| 199 | def is_resultset_packet(self): |
| 200 | field_count = self._data[0] |
| 201 | return 1 <= field_count <= 250 |
| 202 | |
| 203 | def is_load_local_packet(self): |
| 204 | return self._data[0] == 0xFB |
nothing calls this directly
no outgoing calls
no test coverage detected