in src/main/java/com/aliyun/ha3engine/jdbc/Ha3ResultSet.java [284:292]
public Date getDate(String columnLabel) throws SQLException {
try {
return getObject(columnLabel, Date.class);
} catch (Exception e) {
throw new SQLException(String.format(Locale.ROOT, "Unable to convert value [%.128s] of type [%s] to a Date",
new Object[] {getObject(columnLabel, String.class),
typeList.get(keyList.indexOf(columnLabel))}), e);
}
}