Skip to content

Commit

Permalink
executor: Make union test stable (pingcap#4001)
Browse files Browse the repository at this point in the history
  • Loading branch information
shenli authored Aug 3, 2017
1 parent 5231794 commit 722c450
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion executor/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,6 @@ func (s *testSuite) TestUnion(c *C) {
tk.MustExec("CREATE TABLE t (a DECIMAL(4,2))")
tk.MustExec("INSERT INTO t VALUE(12.34)")
r = tk.MustQuery("SELECT 1 AS c UNION select a FROM t")
r.Check(testkit.Rows("1.00", "12.34"))
r.Sort().Check(testkit.Rows("1.00", "12.34"))

// #issue3771
Expand Down

0 comments on commit 722c450

Please sign in to comment.