1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Merge compiler-warning fixes from trunk.

FossilOrigin-Name: a1f2b0428518ec18af74a0e01deb4e40cd95a78f
This commit is contained in:
drh
2014-03-05 23:12:55 +00:00
8 changed files with 74 additions and 18 deletions

View File

@@ -2026,8 +2026,8 @@ typedef u64 Bitmask;
** contains more than 63 columns and the 64-th or later column is used.
*/
struct SrcList {
u8 nSrc; /* Number of tables or subqueries in the FROM clause */
u8 nAlloc; /* Number of entries allocated in a[] below */
int nSrc; /* Number of tables or subqueries in the FROM clause */
u32 nAlloc; /* Number of entries allocated in a[] below */
struct SrcList_item {
Schema *pSchema; /* Schema to which this item is fixed */
char *zDatabase; /* Name of database holding this table */