TableScanTask contains the start key and the end key of a region.
| 248 | |
| 249 | // TableScanTask contains the start key and the end key of a region. |
| 250 | type TableScanTask struct { |
| 251 | ID int |
| 252 | Start kv.Key |
| 253 | End kv.Key |
| 254 | |
| 255 | ctx *workerpool.Context |
| 256 | } |
| 257 | |
| 258 | // RecoverArgs implements workerpool.TaskMayPanic interface. |
| 259 | func (TableScanTask) RecoverArgs() (metricsLabel string, funcInfo string, err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected