Skip to content

Commit 15edb4d

Browse files
committed
slightly optimize the "BLOB" and "BOOLEAN" cases for _sqlite3_column_decltypes
1 parent a842b42 commit 15edb4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlite3.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -346,9 +346,9 @@ static void _sqlite3_column_decltypes(sqlite3_stmt* stmt, uint8_t *typs, int nty
346346
switch (typ[0]) {
347347
case 'b':
348348
case 'B':
349-
if (!sqlite3_stricmp(typ, "boolean")) {
349+
if ((typ[1] == 'o' || typ[1] == 'O') && !sqlite3_stricmp(typ, "boolean")) {
350350
typs[i] = GO_SQLITE3_DECL_BOOL;
351-
} else if (!sqlite3_stricmp(typ, "blob")) {
351+
} else if ((typ[1] == 'l' || typ[1] == 'L') && !sqlite3_stricmp(typ, "blob")) {
352352
typs[i] = GO_SQLITE3_DECL_BLOB;
353353
}
354354
break;

0 commit comments

Comments
 (0)