(f []*Field, binary bool, dst []FieldValue)
| 11 | type RowData []byte |
| 12 | |
| 13 | func (p RowData) Parse(f []*Field, binary bool, dst []FieldValue) ([]FieldValue, error) { |
| 14 | if binary { |
| 15 | return p.ParseBinary(f, dst) |
| 16 | } else { |
| 17 | return p.ParseText(f, dst) |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func (p RowData) ParseText(f []*Field, dst []FieldValue) ([]FieldValue, error) { |
| 22 | for len(dst) < len(f) { |
nothing calls this directly
no test coverage detected