(colIDs []int64, values []types.Datum)
| 72 | } |
| 73 | |
| 74 | func (encoder *Encoder) appendColVals(colIDs []int64, values []types.Datum) { |
| 75 | for i, colID := range colIDs { |
| 76 | encoder.appendColVal(colID, &values[i]) |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | func (encoder *Encoder) appendColVal(colID int64, d *types.Datum) { |
| 81 | if colID > 255 { |
no test coverage detected