mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.0' into cassandra-3.11
* cassandra-3.0: Lightweight transactions temporarily fail after upgrade from 2.1 to 3.0
This commit is contained in:
commit
6a504f4030
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -1263,7 +1263,7 @@ public abstract class LegacyLayout
|
|||
return true;
|
||||
}
|
||||
|
||||
if (tombstone.isCollectionTombstone())
|
||||
if (tombstone.isCollectionTombstone() && helper.includes(tombstone.start.collectionName))
|
||||
{
|
||||
if (clustering == null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue