diff --git a/executor/analyze_test.go b/executor/analyze_test.go index 2346a87aa859d..0367666cf9d41 100644 --- a/executor/analyze_test.go +++ b/executor/analyze_test.go @@ -983,6 +983,7 @@ func (s *testSuite1) TestAnalyzeClusteredIndexPrimary(c *C) { } func (s *testSuite1) TestAnalyzeFullSamplingOnIndexWithVirtualColumnOrPrefixColumn(c *C) { + c.Skip("unstable, skip it and fix it before 20210624") tk := testkit.NewTestKit(c, s.store) tk.MustExec("use test") tk.MustExec("drop table if exists sampling_index_virtual_col") diff --git a/executor/infoschema_reader_test.go b/executor/infoschema_reader_test.go index 1170453d368b0..559246b5e3a05 100644 --- a/executor/infoschema_reader_test.go +++ b/executor/infoschema_reader_test.go @@ -110,6 +110,7 @@ func (s *inspectionSuite) TearDownSuite(c *C) { } func (s *inspectionSuite) TestInspectionTables(c *C) { + c.Skip("unstable, skip it and fix it before 20210624") tk := testkit.NewTestKit(c, s.store) instances := []string{ "pd,127.0.0.1:11080,127.0.0.1:10080,mock-version,mock-githash,0", diff --git a/executor/partition_table_test.go b/executor/partition_table_test.go index 11ec1b2a097e3..f2c43ecadeb36 100644 --- a/executor/partition_table_test.go +++ b/executor/partition_table_test.go @@ -2684,6 +2684,7 @@ PARTITION BY RANGE (a) ( } func (s *testSuiteWithData) TestRangePartitionBoundariesBetweenS(c *C) { + c.Skip("unstable, skip it and fix it before 20210624") tk := testkit.NewTestKit(c, s.store) tk.MustExec("CREATE DATABASE IF NOT EXISTS TestRangePartitionBoundariesBetweenS") diff --git a/executor/set_test.go b/executor/set_test.go index c4dcc1b608e46..e147eba8aa38b 100644 --- a/executor/set_test.go +++ b/executor/set_test.go @@ -1042,6 +1042,7 @@ func (s *testSuite5) TestValidateSetVar(c *C) { } func (s *testSuite5) TestSelectGlobalVar(c *C) { + c.Skip("unstable, skip it and fix it before 20210624") tk := testkit.NewTestKit(c, s.store) tk.MustQuery("select @@global.max_connections;").Check(testkit.Rows("151"))