in src/main/java/com/aliyun/ha3engine/jdbc/Ha3ResultSet.java [306:314]
public Timestamp getTimestamp(String columnLabel) throws SQLException {
try {
return getObject(columnLabel, Timestamp.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);
}
}