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

Side by Side Diff: third_party/sqlite/src/ext/fts3/tool/fts3view.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 program is a debugging and analysis utility that displays 2 ** This program is a debugging and analysis utility that displays
3 ** information about an FTS3 or FTS4 index. 3 ** information about an FTS3 or FTS4 index.
4 ** 4 **
5 ** Link this program against the SQLite3 amalgamation with the 5 ** Link this program against the SQLite3 amalgamation with the
6 ** SQLITE_ENABLE_FTS4 compile-time option. Then run it as: 6 ** SQLITE_ENABLE_FTS4 compile-time option. Then run it as:
7 ** 7 **
8 ** fts3view DATABASE 8 ** fts3view DATABASE
9 ** 9 **
10 ** to get a list of all FTS3/4 tables in DATABASE, or do 10 ** to get a list of all FTS3/4 tables in DATABASE, or do
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 showSegmentStats(db, zTab); 866 showSegmentStats(db, zTab);
867 }else if( strcmp(zCmd,"stat")==0 ){ 867 }else if( strcmp(zCmd,"stat")==0 ){
868 showStat(db, zTab); 868 showStat(db, zTab);
869 }else if( strcmp(zCmd,"vocabulary")==0 ){ 869 }else if( strcmp(zCmd,"vocabulary")==0 ){
870 showVocabulary(db, zTab); 870 showVocabulary(db, zTab);
871 }else{ 871 }else{
872 usage(argv[0]); 872 usage(argv[0]);
873 } 873 }
874 return 0; 874 return 0;
875 } 875 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698