One more test fix

This commit is contained in:
jamesagnew 2021-01-17 08:52:40 -05:00
parent 4913c33fdf
commit 57bebe50e8
1 changed files with 2 additions and 0 deletions

View File

@ -256,6 +256,8 @@ public class JdbcUtils {
return new ColumnType(ColumnTypeEnum.BLOB, length);
case Types.CLOB:
return new ColumnType(ColumnTypeEnum.CLOB, length);
case Types.DOUBLE:
return new ColumnType(ColumnTypeEnum.DOUBLE, length);
default:
throw new IllegalArgumentException("Don't know how to handle datatype " + dataType + " for column " + theColumnName + " on table " + theTableName);
}