Fix SqlTypes::isStringType

This commit is contained in:
Yanming Zhou 2024-04-11 19:30:14 +08:00 committed by Christian Beikov
parent 4ca8377500
commit e9a7a57d13

View File

@ -684,6 +684,7 @@ public static boolean isStringType(int typeCode) {
case Types.BINARY:
case Types.VARBINARY:
case Types.LONGVARBINARY:
return true;
default:
return false;
}