Skip to content

Commit

Permalink
fixut
Browse files Browse the repository at this point in the history
  • Loading branch information
Reminiscent committed Sep 23, 2022
1 parent 555aa45 commit 5cbcf14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/insert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ func (s *testSuite3) TestIssue37187(c *C) {
tk.MustExec("create table t2 (c int(11) ,d varchar(100) ,primary key (c));")
tk.MustExec("prepare in1 from 'insert into t1 (a,b) select c,null from t2 t on duplicate key update b=t.d';")
err := tk.ExecToErr("execute in1;")
c.Assert(err, nil)
c.Assert(err, IsNil)
}

func (s *testSuite3) TestInsertWrongValueForField(c *C) {
Expand Down

0 comments on commit 5cbcf14

Please sign in to comment.