Brief implements task.Brief
()
| 141 | |
| 142 | // Brief implements task.Brief |
| 143 | func (t *TaskTableData) Brief() string { |
| 144 | db, tbl := t.Meta.DatabaseName(), t.Meta.TableName() |
| 145 | idx, total := t.ChunkIndex, t.TotalChunks |
| 146 | return fmt.Sprintf("data of table '%s'.'%s'(%d/%d)", db, tbl, idx, total) |
| 147 | } |
nothing calls this directly
no test coverage detected