Add support for VARBINARY in MySQL

This commit is contained in:
Livan 2019-01-12 07:00:27 +03:00 committed by GitHub
parent 86a4c0b378
commit b7b0f2b587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,6 +141,9 @@ export class MysqlDriver extends AbstractDriver {
case "binary":
colInfo.tsType = "Buffer";
break;
case "varbinary":
colInfo.tsType = "Buffer";
break;
case "geometry":
colInfo.tsType = "string";
break;