File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ go_test(
77
77
"//pkg/sql/types" ,
78
78
"//pkg/testutils" ,
79
79
"//pkg/testutils/serverutils" ,
80
+ "//pkg/testutils/skip" ,
80
81
"//pkg/testutils/sqlutils" ,
81
82
"//pkg/testutils/testcluster" ,
82
83
"//pkg/util/encoding" ,
Original file line number Diff line number Diff line change 9
9
"testing"
10
10
11
11
"github.com/cockroachdb/cockroach/pkg/ccl/testutilsccl"
12
+ "github.com/cockroachdb/cockroach/pkg/testutils/skip"
12
13
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
13
14
"github.com/cockroachdb/cockroach/pkg/util/log"
14
15
)
@@ -17,6 +18,9 @@ func TestAlterPrimaryKeyCorrectZoneConfigBeforeBackfill(t *testing.T) {
17
18
defer leaktest .AfterTest (t )()
18
19
defer log .Scope (t ).Close (t )
19
20
21
+ skip .UnderDeadlock (t )
22
+ skip .UnderRace (t )
23
+
20
24
testCases := []testutilsccl.AlterPrimaryKeyCorrectZoneConfigTestCase {
21
25
{
22
26
Desc : "ALTER PRIMARY KEY" ,
You can’t perform that action at this time.
0 commit comments