From d8df4a4163aeaeea66c0f7cb996eb3581e2e3c76 Mon Sep 17 00:00:00 2001 From: Annie Pompa Date: Wed, 14 Aug 2024 09:32:07 -0400 Subject: [PATCH] workload/schemachange: temp disable alterPK This flakes are also affecting other teams -- let's disable this temporarily while we work on a fix. Epic: none Informs: #128656 Release note: None --- pkg/workload/schemachange/optype.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/workload/schemachange/optype.go b/pkg/workload/schemachange/optype.go index 431626ded595..6f805b80402a 100644 --- a/pkg/workload/schemachange/optype.go +++ b/pkg/workload/schemachange/optype.go @@ -274,7 +274,7 @@ var opWeights = []int{ alterTableAddConstraintForeignKey: 1, alterTableAddConstraintUnique: 1, alterTableAlterColumnType: 0, // Disabled and tracked with #66662. - alterTableAlterPrimaryKey: 1, + alterTableAlterPrimaryKey: 0, // Disabled and tracked with #128656. alterTableDropColumn: 1, alterTableDropColumnDefault: 1, alterTableDropConstraint: 1,