This returns a field descriptor for FieldType_SHORT (i.e., Field_shart)
(nullable NullableColumn)
| 39 | |
| 40 | // This returns a field descriptor for FieldType_SHORT (i.e., Field_shart) |
| 41 | func NewShortFieldDescriptor(nullable NullableColumn) FieldDescriptor { |
| 42 | return newFixedLengthFieldDescriptor( |
| 43 | mysql_proto.FieldType_SHORT, |
| 44 | nullable, |
| 45 | 2, |
| 46 | func(b []byte) interface{} { return uint64(LittleEndian.Uint16(b)) }) |
| 47 | } |
| 48 | |
| 49 | // This returns a field descriptor for FieldType_INT24 (i.e., Field_medium) |
| 50 | func NewInt24FieldDescriptor(nullable NullableColumn) FieldDescriptor { |