Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

executor: temporarily skip some unstable test cases #25335

Merged
merged 3 commits into from
Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions executor/analyze_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
1 change: 1 addition & 0 deletions executor/infoschema_reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions executor/partition_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
1 change: 1 addition & 0 deletions executor/set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down