Skip to content

Commit

Permalink
fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
winoros authored Jan 12, 2023
1 parent a37f234 commit f258c18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion executor/write_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4378,7 +4378,8 @@ func TestIssueInsertPrefixIndexForNonUTF8Collation(t *testing.T) {
}

func TestMutipleReplaceAndInsertInOneSession(t *testing.T) {
store := testkit.CreateMockStore(t)
store, clean := testkit.CreateMockStore(t)
defer clean()
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("create table t_securities(id bigint not null auto_increment primary key, security_id varchar(8), market_id smallint, security_type int, unique key uu(security_id, market_id))")
Expand Down

0 comments on commit f258c18

Please sign in to comment.