From 2af4624cc9d02db5c34761a1ab072387a608b583 Mon Sep 17 00:00:00 2001 From: wjHuang Date: Tue, 7 Dec 2021 17:19:56 +0800 Subject: [PATCH] executor: stable test TestSetDDLReorgBatchSize and TestSetDDLReorgWorkerCnt (#30480) --- executor/ddl_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/executor/ddl_test.go b/executor/ddl_test.go index 4753a33e62b15..eb3f344e0c3fb 100644 --- a/executor/ddl_test.go +++ b/executor/ddl_test.go @@ -1205,7 +1205,7 @@ func (s *testSuite6) TestMaxHandleAddIndex(c *C) { tk.MustExec("admin check table t1") } -func (s *testSuite6) TestSetDDLReorgWorkerCnt(c *C) { +func (s *testSerialSuite) TestSetDDLReorgWorkerCnt(c *C) { tk := testkit.NewTestKit(c, s.store) tk.MustExec("use test") err := ddlutil.LoadDDLReorgVars(context.Background(), tk.Se) @@ -1244,7 +1244,7 @@ func (s *testSuite6) TestSetDDLReorgWorkerCnt(c *C) { tk.MustQuery("select @@global.tidb_ddl_reorg_worker_cnt").Check(testkit.Rows("256")) } -func (s *testSuite6) TestSetDDLReorgBatchSize(c *C) { +func (s *testSerialSuite) TestSetDDLReorgBatchSize(c *C) { tk := testkit.NewTestKit(c, s.store) tk.MustExec("use test") err := ddlutil.LoadDDLReorgVars(context.Background(), tk.Se)