| 73 | } |
| 74 | |
| 75 | void ComFieldList::readPayloadImpl(ReadBuffer & payload) |
| 76 | { |
| 77 | // Command byte has been already read from payload. |
| 78 | readNullTerminated(table, payload); |
| 79 | readStringUntilEOF(field_wildcard, payload); |
| 80 | } |
| 81 | |
| 82 | ColumnDefinition::ColumnDefinition() |
| 83 | : character_set(0x00), column_length(0), column_type(MYSQL_TYPE_DECIMAL), flags(0x00) |
nothing calls this directly
no test coverage detected