Ninja: update unit tests for CASSANDRA-8206

This commit is contained in:
Tyler Hobbs 2014-11-04 11:56:13 -06:00
parent c345f81e7f
commit b3c1e147b5
2 changed files with 8 additions and 0 deletions

View File

@ -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);

View File

@ -201,6 +201,11 @@ public class SecondaryIndexColumnSizeTest
{
}
@Override
public void deleteForCleanup(ByteBuffer rowKey, Column col)
{
}
@Override
public void insert(ByteBuffer rowKey, Column col)
{