Skip to content

Commit

Permalink
executor: fix confusing statement label (pingcap#6419)
Browse files Browse the repository at this point in the history
  • Loading branch information
alivxxx authored Apr 28, 2018
1 parent fe6b3f8 commit c946dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func GetStmtLabel(stmtNode ast.StmtNode) string {
case *ast.PrepareStmt:
return "Prepare"
case *ast.UseStmt:
return "IGNORE"
return "Use"
}
return "other"
}
Expand Down

0 comments on commit c946dbb

Please sign in to comment.