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

Side by Side Diff: third_party/sqlite/src/ext/fts5/tool/loadfts5.tcl

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 proc loadfile {f} { 3 proc loadfile {f} {
4 set fd [open $f] 4 set fd [open $f]
5 set data [read $fd] 5 set data [read $fd]
6 close $fd 6 close $fd
7 return $data 7 return $data
8 } 8 }
9 9
10 set ::nRow 0 10 set ::nRow 0
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 db eval {INSERT INTO t1(t1, rank) VALUES('crisismerge', $O(crisismerge))} 153 db eval {INSERT INTO t1(t1, rank) VALUES('crisismerge', $O(crisismerge))}
154 } else { 154 } else {
155 } 155 }
156 } 156 }
157 load_hierachy [lindex $argv end] 157 load_hierachy [lindex $argv end]
158 db eval COMMIT 158 db eval COMMIT
159 puts "" 159 puts ""
160 160
161 161
162 162
OLDNEW
« no previous file with comments | « third_party/sqlite/src/ext/fts5/tool/fts5txt2db.tcl ('k') | third_party/sqlite/src/ext/fts5/tool/mkfts5c.tcl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698