Skip to content

Commit

Permalink
ddl: make TestCreateTableWithRangeColumnPartition stable (#26987)
Browse files Browse the repository at this point in the history
  • Loading branch information
zimulala authored Aug 9, 2021
1 parent 83ebdf3 commit 82173de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddl/db_partition_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ create table log_message_1 (
tk.MustExec(`create table t(a binary) partition by range columns (a) (partition p0 values less than (X'0C'));`)
tk.MustExec(`alter table t add partition (partition p1 values less than (X'0D'), partition p2 values less than (X'0E'));`)
tk.MustExec(`insert into t values (X'0B'), (X'0C'), (X'0D')`)
tk.MustQuery(`select * from t where a < X'0D'`).Check(testkit.Rows("\x0B", "\x0C"))
tk.MustQuery(`select * from t where a < X'0D' order by a`).Check(testkit.Rows("\x0B", "\x0C"))
}

func (s *testIntegrationSuite1) TestDisableTablePartition(c *C) {
Expand Down

0 comments on commit 82173de

Please sign in to comment.