return new SQLBinary(this, name, false);
}
// HSQLDB 2.2.8 reports INTERVAL types as VARCHAR
if (jdbcType == Types.VARCHAR && name.startsWith("INTERVAL")) {
return new SQLInterval(this, name);
}
// HSQLDB supports NaN and +/-INF in DOUBLE
if (jdbcType == Types.DOUBLE || jdbcType == Types.FLOAT || jdbcType == Types.REAL) {
return new HSQLDBCompatibilityDoubleDataType(this);