diff --git a/CHANGES.txt b/CHANGES.txt index e346722e8c..eb10bad166 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,8 @@ * More fixes to the TokenAllocator (CASSANDRA-12990) * NoReplicationTokenAllocator should work with zero replication factor (CASSANDRA-12983) Merged from 3.0: + * Lightweight transactions temporarily fail after upgrade from 2.1 to 3.0 (CASSANDRA-13109) + * Duplicate rows after upgrading from 2.1.16 to 3.0.10/3.9 (CASSANDRA-13125) * Fix UPDATE queries with empty IN restrictions (CASSANDRA-13152) * Fix handling of partition with partition-level deletion plus live rows in sstabledump (CASSANDRA-13177) diff --git a/src/java/org/apache/cassandra/db/LegacyLayout.java b/src/java/org/apache/cassandra/db/LegacyLayout.java index d5c62c8471..3af243ee2e 100644 --- a/src/java/org/apache/cassandra/db/LegacyLayout.java +++ b/src/java/org/apache/cassandra/db/LegacyLayout.java @@ -1263,7 +1263,7 @@ public abstract class LegacyLayout return true; } - if (tombstone.isCollectionTombstone()) + if (tombstone.isCollectionTombstone() && helper.includes(tombstone.start.collectionName)) { if (clustering == null) {