Index: third_party/sqlite/amalgamation/sqlite3.c |
diff --git a/third_party/sqlite/amalgamation/sqlite3.c b/third_party/sqlite/amalgamation/sqlite3.c |
index 82dc78033a0bc2a9e852e1dac761c877d5c1f7e5..c6747fdf63e53f547d58d7b52c8c90aed71cfdba 100644 |
--- a/third_party/sqlite/amalgamation/sqlite3.c |
+++ b/third_party/sqlite/amalgamation/sqlite3.c |
@@ -130692,7 +130692,7 @@ static int recoverColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ |
FNENTRY(); |
- if( i>=pRecover->nCols ){ |
+ if( (unsigned)i>=pRecover->nCols ){ |
return SQLITE_ERROR; |
} |
@@ -130999,11 +130999,11 @@ static int recoverInit( |
sqlite3_vtab **ppVtab, /* OUT: New virtual table */ |
char **pzErr /* OUT: Error message, if any */ |
){ |
- const unsigned kTypeCol = 4; /* First argument with column type info. */ |
- Recover *pRecover; /* Virtual table structure being created. */ |
- char *zDot; /* Any dot found in "db.table" backing. */ |
- u32 iRootPage; /* Root page of backing table. */ |
- char *zCreateSql; /* Schema of created virtual table. */ |
+ const int kTypeCol = 4; /* First argument with column type info. */ |
+ Recover *pRecover; /* Virtual table structure being created. */ |
+ char *zDot; /* Any dot found in "db.table" backing. */ |
+ u32 iRootPage; /* Root page of backing table. */ |
+ char *zCreateSql; /* Schema of created virtual table. */ |
int rc; |
/* Require to be in the temp database. */ |