mirror of https://github.com/apache/cassandra
Ninja: update unit tests for CASSANDRA-8206
This commit is contained in:
parent
c345f81e7f
commit
b3c1e147b5
|
|
@ -591,6 +591,9 @@ public class RangeTombstoneTest extends SchemaLoader
|
|||
deletes.add(col);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteForCleanup(ByteBuffer rowKey, Column col) { }
|
||||
|
||||
public void insert(ByteBuffer rowKey, Column col)
|
||||
{
|
||||
inserts.add(col);
|
||||
|
|
|
|||
|
|
@ -201,6 +201,11 @@ public class SecondaryIndexColumnSizeTest
|
|||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteForCleanup(ByteBuffer rowKey, Column col)
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
public void insert(ByteBuffer rowKey, Column col)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue