holo-client/src/main/java/com/alibaba/hologres/client/CheckAndPut.java [63:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public CheckAndPut setObject(String columnName, Object obj, boolean onlyInsert) {
		Integer i = record.getSchema().getColumnIndex(columnName);
		if (i == null) {
			throw new InvalidParameterException("can not found column named " + columnName);
		}
		setObject(i, obj, onlyInsert);
		return this;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



holo-client/src/main/java/com/alibaba/hologres/client/Put.java [70:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public Put setObject(String columnName, Object obj, boolean onlyInsert) {
		Integer i = record.getSchema().getColumnIndex(columnName);
		if (i == null) {
			throw new InvalidParameterException("can not found column named " + columnName);
		}
		setObject(i, obj, onlyInsert);
		return this;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



