Skip to content

Commit

Permalink
logictestccl: skip flaky TestCCLLogic/fakedist-metadata/partitioning_…
Browse files Browse the repository at this point in the history
…enum

Informs #75227

Release note: None
  • Loading branch information
mgartner committed Jan 20, 2022
1 parent 96779a6 commit f409bb1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/ccl/logictestccl/testdata/logic_test/partitioning_enum
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f409bb1

Please sign in to comment.