(self, data, encoding)
| 230 | """ |
| 231 | |
| 232 | def __init__(self, data, encoding): |
| 233 | MysqlPacket.__init__(self, data, encoding) |
| 234 | self._parse_field_descriptor(encoding) |
| 235 | |
| 236 | def _parse_field_descriptor(self, encoding): |
| 237 | """Parse the 'Field Descriptor' (Metadata) packet. |
nothing calls this directly
no test coverage detected