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