Skip to content

Commit

Permalink
add clean defer
Browse files Browse the repository at this point in the history
  • Loading branch information
sylzd committed Nov 22, 2021
1 parent a3a8dd2 commit 185f5a3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions executor/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ func (s *testSuiteP2) TestAdminShowDDLJobs(c *C) {
func (s *testSuiteP2) TestAdminShowDDLJobsInfo(c *C) {
tk := testkit.NewTestKit(c, s.store)
tk.MustExec("create database if not exists test_admin_show_ddl_jobs")
defer tk.MustExec("drop database if exists test_admin_show_ddl_jobs")
tk.MustExec("use test_admin_show_ddl_jobs")
tk.MustExec("drop table if exists t, t1;")
tk.MustExec("create table t (a int);")
Expand Down

0 comments on commit 185f5a3

Please sign in to comment.