if (key.getColumnFamily().equals(Constants.METADATA_DATAFILE_COLUMN_FAMILY)) {
String relPath = key.getColumnQualifier().toString();
// only insert deletes for files owned by this table
if (!relPath.startsWith("../"))
bw.addMutation(createDeleteMutation(tableId, relPath));
}
if (Constants.METADATA_DIRECTORY_COLUMN.hasColumns(key)) {
bw.addMutation(createDeleteMutation(tableId, cell.getValue().toString()));
}