IndexRecordChunk contains one of the chunk read from corresponding TableScanTask.
| 268 | |
| 269 | // IndexRecordChunk contains one of the chunk read from corresponding TableScanTask. |
| 270 | type IndexRecordChunk struct { |
| 271 | ID int |
| 272 | Chunk *chunk.Chunk |
| 273 | Err error |
| 274 | Done bool |
| 275 | } |
| 276 | |
| 277 | // RecoverArgs implements workerpool.TaskMayPanic interface. |
| 278 | func (IndexRecordChunk) RecoverArgs() (metricsLabel string, funcInfo string, err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected