diff options
Diffstat (limited to 'src/whereInt.h')
-rw-r--r-- | src/whereInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/whereInt.h b/src/whereInt.h index 8cd414487..3fc39f6b4 100644 --- a/src/whereInt.h +++ b/src/whereInt.h @@ -123,8 +123,8 @@ struct WhereLoop { } btree; struct { /* Information for virtual tables */ int idxNum; /* Index number */ - u8 needFree : 1; /* True if sqlite3_free(idxStr) is needed */ - u8 bOmitOffset : 1; /* True to let virtual table handle offset */ + u32 needFree : 1; /* True if sqlite3_free(idxStr) is needed */ + u32 bOmitOffset : 1; /* True to let virtual table handle offset */ i8 isOrdered; /* True if satisfies ORDER BY */ u16 omitMask; /* Terms that may be omitted */ char *idxStr; /* Index identifier string */ |