/**
   * Updates a ROM result set definition. To make sure that convertNativeTypeToROMDataType() will be
   * called. So that can verify blob conversion.
   *
   * @param param
   */
  private void updateResultSetDefinition2(OdaDataSetHandle setHandle) throws SemanticException {
    Iterator iter1 = setHandle.resultSetIterator();
    OdaResultSetColumnHandle column = (OdaResultSetColumnHandle) iter1.next();

    column.setNativeDataType(new Integer(10));
  }