Merge pull request #137 from xLivan/patch-1

Add support for VARBINARY in MySQL
This commit is contained in:
Kononnable 2019-01-16 21:06:15 +01:00 committed by GitHub
commit 27cf800c97
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;