Table table = lookupColFamily(colFamily, (NoSqlEntityManager) ormSession);
byte[] rowKey = action.getRowKey();
IndexColumn column = action.getColumn();
IndexedRow row = (IndexedRow) table.findOrCreateRow(rowKey);
row.removeIndexedColumn(column.copy());
}
private Table lookupColFamily(String colFamily, NoSqlEntityManager mgr) {
Table table = database.findTable(colFamily);
if(table != null)