Skip to content

Commit d55163d

Browse files
committed
Support varbinary (for Adriano)
1 parent 2e320f3 commit d55163d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public function isNumericType($field) {
198198

199199
public function isBinaryType($field) {
200200
//echo "$field->name: $field->type ($field->flags)\n";
201-
return (($field->flags & 128) && ($field->type>=249) && ($field->type<=252));
201+
return ($field->flags & 128) && ($field->type>=249) && ($field->type<=254);
202202
}
203203

204204
public function isGeometryType($field) {

data/blog.db

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)