if(metaDbo == null)
throw new IllegalArgumentException("DboTableMeta for colFamily="+colFamily+" was not found");
TypedRow proxy = row;
Object rowKey = row.getRowKey();
DboColumnIdMeta idMeta = metaDbo.getIdColumnMeta();
byte[] byteKey = idMeta.convertToStorage2(rowKey);
byte[] virtualKey = idMeta.formVirtRowKey(byteKey);
if(!metaDbo.hasIndexedField()) {
session.remove(metaDbo, virtualKey);
return;
} else if(!(row instanceof NoSqlTypedRowProxy)) {
//then we don't have the database information for indexes so we need to read from the database