mirror of https://github.com/apache/cassandra
Lightweight transactions temporarily fail after upgrade from 2.1 to 3.0
patch by Samuel Klock and Sylvain Lebresne; reviewed by Sylvain Lebresne for CASSANDRA-13109
This commit is contained in:
parent
7c2437e26b
commit
74fdfe0a5f
|
|
@ -1,4 +1,5 @@
|
|||
3.0.11
|
||||
* 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)
|
||||
* Abort or retry on failed hints delivery (CASSANDRA-13124)
|
||||
|
|
|
|||
|
|
@ -1261,7 +1261,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