Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

model: show RowCount value after the operation of admin show ddl #1780

Merged
merged 2 commits into from
Sep 29, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
model: show RowCount value after the operation of admin show ddl
  • Loading branch information
zimulala committed Sep 29, 2016
commit 842bc59cb9171dc27e30df618b6315bfef9fd06e
5 changes: 3 additions & 2 deletions model/ddl.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,9 @@ func (job *Job) DecodeArgs(args ...interface{}) error {

// String implements fmt.Stringer interface.
func (job *Job) String() string {
return fmt.Sprintf("ID:%d, Type:%s, State:%s, SchemaState:%s, SchemaID:%d, TableID:%d, Args:%s",
job.ID, job.Type, job.State, job.SchemaState, job.SchemaID, job.TableID, job.RawArgs)
rowCount := job.GetRowCount()
return fmt.Sprintf("ID:%d, Type:%s, State:%s, SchemaState:%s, SchemaID:%d, TableID:%d, RowCount:%d, Args:%s",
job.ID, job.Type, job.State, job.SchemaState, job.SchemaID, job.TableID, rowCount, job.RawArgs)
}

// IsFinished returns whether job is finished or not.
Expand Down