Long typeParameter1, Long typeParameter2,
boolean nullable,
String tableSchema, String tableName, String columnName) {
TClass typeClass = getTypeClass(bundleName, typeName);
if (typeClass == null) {
throw new UnsupportedColumnDataTypeException(tableSchema, tableName, columnName,
typeName);
}
return getType(typeClass, typeParameter1, typeParameter2, null, null, StringFactory.DEFAULT_CHARSET_ID, StringFactory.DEFAULT_COLLATION_ID,
nullable, tableSchema, tableName, columnName);
}