| 9 | type FieldData []byte |
| 10 | |
| 11 | type Field struct { |
| 12 | Data FieldData |
| 13 | Schema []byte |
| 14 | Table []byte |
| 15 | OrgTable []byte |
| 16 | Name []byte |
| 17 | OrgName []byte |
| 18 | Charset uint16 |
| 19 | ColumnLength uint32 |
| 20 | Type uint8 |
| 21 | Flag uint16 |
| 22 | Decimal uint8 |
| 23 | |
| 24 | DefaultValueLength uint64 |
| 25 | DefaultValue []byte |
| 26 | } |
| 27 | |
| 28 | type FieldValueType uint8 |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected