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

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/ext/fts3/fts3speed.tcl

Issue 883353008: [sql] Import reference version of SQLite 3.8.7.4. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hold back encoding change which is messing up patch. 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 2
3 #-------------------------------------------------------------------------- 3 #--------------------------------------------------------------------------
4 # This script contains several sub-programs used to test FTS3/FTS4 4 # This script contains several sub-programs used to test FTS3/FTS4
5 # performance. It does not run the queries directly, but generates SQL 5 # performance. It does not run the queries directly, but generates SQL
6 # scripts that can be run using the shell tool. 6 # scripts that can be run using the shell tool.
7 # 7 #
8 # The following cases are tested: 8 # The following cases are tested:
9 # 9 #
10 # 1. Inserting documents into an FTS3 table. 10 # 1. Inserting documents into an FTS3 table.
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 set ::fd [open fts3speed_optimize.sql w] 113 set ::fd [open fts3speed_optimize.sql w]
114 test_2 114 test_2
115 close $::fd 115 close $::fd
116 116
117 puts "Success. Created files:" 117 puts "Success. Created files:"
118 puts " fts3speed_insert.sql" 118 puts " fts3speed_insert.sql"
119 puts " fts3speed_select.sql" 119 puts " fts3speed_select.sql"
120 puts " fts3speed_select2.sql" 120 puts " fts3speed_select2.sql"
121 puts " fts3speed_optimize.sql" 121 puts " fts3speed_optimize.sql"
122 122
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698