{
cfamily.addTombstone(path, col.getValue(), col.timestamp);
}
else if (col.isRangeTombstone())
{
cfamily.addAtom(new RangeTombstone(col.getName(), col.getValue(), col.timestamp, col.localExpirationTime));
}
// cql3 row marker, see CASSANDRA-5852
else if (!path.columnName.hasRemaining())
{
cfamily.addColumn(new QueryPath(cfm.cfName, superName, ByteBuffer.wrap(new byte[3])), col.getValue(), col.timestamp);