Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Unified Diff: third_party/sqlite/src/ext/fts3/tool/fts3view.c

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/ext/fts3/fts3_write.c ('k') | third_party/sqlite/src/ext/fts3/unicode/mkunicode.tcl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/ext/fts3/tool/fts3view.c
diff --git a/third_party/sqlite/src/ext/fts3/tool/fts3view.c b/third_party/sqlite/src/ext/fts3/tool/fts3view.c
index a8d7981af00d48eba6191b262640517e9a24a886..37f9b7396dcb4e8effcb4bea5cc8d8a550c275d9 100644
--- a/third_party/sqlite/src/ext/fts3/tool/fts3view.c
+++ b/third_party/sqlite/src/ext/fts3/tool/fts3view.c
@@ -398,8 +398,8 @@ static void showSegmentStats(sqlite3 *db, const char *zTab){
if( sqlite3_step(pStmt)==SQLITE_ROW
&& (nLeaf = sqlite3_column_int(pStmt, 0))>0
){
- nIdx = sqlite3_column_int(pStmt, 5);
sqlite3_int64 sz;
+ nIdx = sqlite3_column_int(pStmt, 5);
printf("For level %d:\n", i);
printf(" Number of indexes...................... %9d\n", nIdx);
printf(" Number of leaf segments................ %9d\n", nLeaf);
« no previous file with comments | « third_party/sqlite/src/ext/fts3/fts3_write.c ('k') | third_party/sqlite/src/ext/fts3/unicode/mkunicode.tcl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698