this.familyName = this.getColumnAttrib().getFamilyName();
this.columnName = this.getColumnAttrib().getColumnName();
}
else {
if (!name.contains(":"))
throw new HBqlException("Unknown select value: " + name);
final String[] strs = name.split(":");
this.familyName = strs[0];
this.columnName = strs[1];
final Collection<String> families = this.getTableMapping().getMappingFamilyNames();
if (!families.contains(this.getFamilyName()))
throw new HBqlException("Unknown family name: " + this.getFamilyName());
}
this.familyNameBytes = IO.getSerialization().getStringAsBytes(this.getFamilyName());
this.columnNameBytes = IO.getSerialization().getStringAsBytes(this.getColumnName());
}