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

Side by Side Diff: third_party/sqlite/src/tool/showstat4.c

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 ** This utility program decodes and displays the content of the 2 ** This utility program decodes and displays the content of the
3 ** sqlite_stat4 table in the database file named on the command 3 ** sqlite_stat4 table in the database file named on the command
4 ** line. 4 ** line.
5 */ 5 */
6 #include <stdio.h> 6 #include <stdio.h>
7 #include <string.h> 7 #include <string.h>
8 #include <stdlib.h> 8 #include <stdlib.h>
9 #include <ctype.h> 9 #include <ctype.h>
10 #include "sqlite3.h" 10 #include "sqlite3.h"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 zSep = ","; 148 zSep = ",";
149 y += sz; 149 y += sz;
150 } 150 }
151 printf("\n"); 151 printf("\n");
152 } 152 }
153 sqlite3_free(zIdx); 153 sqlite3_free(zIdx);
154 sqlite3_finalize(pStmt); 154 sqlite3_finalize(pStmt);
155 sqlite3_close(db); 155 sqlite3_close(db);
156 return 0; 156 return 0;
157 } 157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698