Skip to content

Commit

Permalink
Merge pull request #117685 from cockroachdb/blathers/backport-release…
Browse files Browse the repository at this point in the history
…-23.1.14-rc-117388

release-23.1.14-rc: sql: skip tests under race that may trigger a fixed race in conn executor
  • Loading branch information
yuzefovich authored Jan 11, 2024
2 parents 9a49e00 + 634e0dd commit b95f222
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/ccl/testccl/sqlccl/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ go_test(
"//pkg/sql/tests",
"//pkg/testutils",
"//pkg/testutils/serverutils",
"//pkg/testutils/skip",
"//pkg/testutils/sqlutils",
"//pkg/testutils/testcluster",
"//pkg/util/hlc",
Expand Down
2 changes: 2 additions & 0 deletions pkg/ccl/testccl/sqlccl/temp_table_clean_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/sql"
"github.com/cockroachdb/cockroach/pkg/sql/sqlliveness/slinstance"
"github.com/cockroachdb/cockroach/pkg/testutils/serverutils"
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/testutils/sqlutils"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/stop"
Expand All @@ -26,6 +27,7 @@ import (

func TestTenantTempTableCleanup(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.UnderRace(t, "May cause a conn executor race fixed by #114783")

ctx := context.Background()
t.Helper()
Expand Down

0 comments on commit b95f222

Please sign in to comment.