Skip to content

Commit

Permalink
Merge branch 'release-3.0' into auto_cache_3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AilinKid authored Apr 20, 2020
2 parents a302016 + 7873549 commit 5d7ee12
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions model/ddl.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,13 @@ func NewDDLReorgMeta() *DDLReorgMeta {

// Job is for a DDL operation.
type Job struct {
ID int64 `json:"id"`
Type ActionType `json:"type"`
SchemaID int64 `json:"schema_id"`
TableID int64 `json:"table_id"`
State JobState `json:"state"`
Error *terror.Error `json:"err"`
ID int64 `json:"id"`
Type ActionType `json:"type"`
SchemaID int64 `json:"schema_id"`
TableID int64 `json:"table_id"`
SchemaName string `json:"schema_name"`
State JobState `json:"state"`
Error *terror.Error `json:"err"`
// ErrorCount will be increased, every time we meet an error when running job.
ErrorCount int64 `json:"err_count"`
// RowCount means the number of rows that are processed.
Expand Down

0 comments on commit 5d7ee12

Please sign in to comment.