Skip to content

Commit

Permalink
rename testing db name to avoid conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
tangenta committed Aug 4, 2019
1 parent a985627 commit c697118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ddl/db_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -814,8 +814,8 @@ func (s *testIntegrationSuite5) TestModifyingColumnOption(c *C) {
func (s *testIntegrationSuite1) TestIndexOnMultipleGeneratedColumn(c *C) {
tk := testkit.NewTestKit(c, s.store)

tk.MustExec("create database if not exists test")
tk.MustExec("use test")
tk.MustExec("create database if not exists test_mul_gen_col")
tk.MustExec("use test_mul_gen_col")
tk.MustExec("drop table if exists t")
tk.MustExec("create table t (a int, b int as (a + 1), c int as (b + 1))")
tk.MustExec("insert into t (a) values (1)")
Expand Down

0 comments on commit c697118

Please sign in to comment.