From f409bb18e99c734f12ec3af9c954c0104c276791 Mon Sep 17 00:00:00 2001 From: Marcus Gartner Date: Thu, 20 Jan 2022 12:42:46 -0500 Subject: [PATCH] logictestccl: skip flaky TestCCLLogic/fakedist-metadata/partitioning_enum Informs #75227 Release note: None --- pkg/ccl/logictestccl/testdata/logic_test/partitioning_enum | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/ccl/logictestccl/testdata/logic_test/partitioning_enum b/pkg/ccl/logictestccl/testdata/logic_test/partitioning_enum index 70badf372e1e..d2b914fcfe07 100644 --- a/pkg/ccl/logictestccl/testdata/logic_test/partitioning_enum +++ b/pkg/ccl/logictestccl/testdata/logic_test/partitioning_enum @@ -83,8 +83,9 @@ drop type if exists t; create type t as enum('a', 'b', 'c'); create table tbl (i INT, k t, PRIMARY KEY (i, k), INDEX idx (k) PARTITION BY RANGE (k) (PARTITION "a" VALUES FROM ('a') TO ('b'))) -statement error pgcode 2BP01 could not remove enum value "a" as it is being used in the partitioning of index tbl@idx -alter type t drop value 'a'; +# TODO(#75227): Fix this flaky test. +# statement error pgcode 2BP01 could not remove enum value "a" as it is being used in the partitioning of index tbl@idx +# alter type t drop value 'a'; # We want to fail even if the index is being dropped. The reason is that it # would be bad if we rolled back the dropping of the index.