Skip to content

Commit

Permalink
schemachanger: skip flakey test
Browse files Browse the repository at this point in the history
Skips `TestConcurrentDeclarativeSchemaChanges`.

Informs #106732

Release note: None
  • Loading branch information
DrewKimball committed Jul 19, 2023
1 parent 30acaf9 commit a05d100
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/sql/schemachanger/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ go_test(
"//pkg/sql/tests",
"//pkg/testutils",
"//pkg/testutils/serverutils",
"//pkg/testutils/skip",
"//pkg/testutils/sqlutils",
"//pkg/testutils/testcluster",
"//pkg/util",
Expand Down
2 changes: 2 additions & 0 deletions pkg/sql/schemachanger/schemachanger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/sql/tests"
"github.com/cockroachdb/cockroach/pkg/testutils"
"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"
"github.com/cockroachdb/cockroach/pkg/util/ctxgroup"
Expand All @@ -60,6 +61,7 @@ import (
// schema changes operating on the same descriptors are performed serially.
func TestConcurrentDeclarativeSchemaChanges(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 106732, "flaky test")
defer log.Scope(t).Close(t)

ctx, cancel := context.WithCancel(context.Background())
Expand Down

0 comments on commit a05d100

Please sign in to comment.