Skip to content

Commit

Permalink
ddl: pass make race
Browse files Browse the repository at this point in the history
  • Loading branch information
zimulala committed Aug 31, 2016
1 parent e508a23 commit ca7be01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ddl/ddl_db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func (s *testDBSuite) testDropIndex(c *C) {
c.Assert(c3idx, NotNil)

go func() {
s.mustExec(c, "drop index c3_index on t1")
sessionExec(c, s.store, "drop index c3_index on t1")
done <- struct{}{}
}()

Expand Down Expand Up @@ -416,7 +416,7 @@ func (s *testDBSuite) testDropColumn(c *C) {
ctx := s.s.(context.Context)

go func() {
s.mustExec(c, "alter table t2 drop column c4")
sessionExec(c, s.store, "alter table t2 drop column c4")
done <- struct{}{}
}()

Expand Down

0 comments on commit ca7be01

Please sign in to comment.