[#3255] DataTypeException: Cannot convert from "" (class java.lang.String) to class [B when casting to MySQL BINARY types

This commit is contained in:
lukaseder 2015-04-13 13:35:35 +02:00
parent 817fabc38e
commit 7077eb7125

View File

@ -7642,7 +7642,7 @@ public class DSL {
*/
@Support
public static <T> Field<T> cast(Object value, DataType<T> type) {
return Utils.field(value, type).cast(type);
return Utils.field(value).cast(type);
}
/**