Skip to content

Commit

Permalink
test: make test TestIssue25506 stable (#25617)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazycs520 authored Jun 21, 2021
1 parent 6454885 commit 3a1f65a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8665,5 +8665,5 @@ func (s *testSuite) TestIssue25506(c *C) {
tk.MustExec("insert into tbl_3 values (0xFF)")
tk.MustExec("create table tbl_23 (col_15 bit(15))")
tk.MustExec("insert into tbl_23 values (0xF)")
tk.MustQuery("(select col_15 from tbl_23) union all (select col_15 from tbl_3 for update)").Check(testkit.Rows("\x00\x00\x0F", "\x00\xFF\xFF", "\x00\x00\xFF"))
tk.MustQuery("(select col_15 from tbl_23) union all (select col_15 from tbl_3 for update) order by col_15").Check(testkit.Rows("\x00\x00\x0F", "\x00\x00\xFF", "\x00\xFF\xFF"))
}

0 comments on commit 3a1f65a

Please sign in to comment.