420421422423424425426427428
if (columnName != null) { throw new UnsupportedColumnDataTypeException(schemaName, tableName, columnName, sqlType.toString()); } else { throw new UnsupportedDataTypeException(sqlType.toString()); } } }
513514515516517518519520521
if (columnName != null) { throw new UnsupportedColumnDataTypeException(schemaName, tableName, columnName, jdbcTypeName(jdbcType)); } else { throw new UnsupportedDataTypeException(jdbcTypeName(jdbcType)); } } }