DecodeToBytesNoHandle decodes raw byte slice to row data without handle.
(outputOffset map[int64]int, value []byte)
| 480 | |
| 481 | // DecodeToBytesNoHandle decodes raw byte slice to row data without handle. |
| 482 | func (decoder *BytesDecoder) DecodeToBytesNoHandle(outputOffset map[int64]int, value []byte) ([][]byte, error) { |
| 483 | return decoder.decodeToBytesInternal(outputOffset, nil, value, nil) |
| 484 | } |
| 485 | |
| 486 | // DecodeToBytes decodes raw byte slice to row data. |
| 487 | func (decoder *BytesDecoder) DecodeToBytes(outputOffset map[int64]int, handle kv.Handle, value []byte, cacheBytes []byte) ([][]byte, error) { |
no test coverage detected