private static void delete(ColumnFamily cf, int from, int to, long timestamp) {
   cf.delete(
       new DeletionInfo(
           b(from),
           b(to),
           cf.getComparator(),
           timestamp,
           (int) (System.currentTimeMillis() / 1000)));
 }