src/main/java/com/aliyun/odps/jdbc/utils/transformer/to/jdbc/ToJdbcByteArrayTransformer.java [62:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (Exception e) {
      String errorMsg = getTransformationErrMsg(Objects.toString(o), byte[].class, e.getMessage());
      throw new SQLException(errorMsg, e);
    }
  }

  @Override
  public Object transform(Object o, String charset, Calendar cal, TimeZone timeZone)
      throws SQLException {
    return transform(o, charset, cal, timeZone, OdpsCommonUtils.indicateTypeFromClass(o));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/aliyun/odps/jdbc/utils/transformer/to/jdbc/ToJdbcStringTransformer.java [66:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (Exception e) {
      String errorMsg = getTransformationErrMsg(Objects.toString(o), byte[].class, e.getMessage());
      throw new SQLException(errorMsg, e);
    }
  }

  @Override
  public Object transform(Object o, String charset, Calendar cal, TimeZone timeZone)
      throws SQLException {
    return transform(o, charset, cal, timeZone, OdpsCommonUtils.indicateTypeFromClass(o));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



