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

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/test/fts1i.test

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 # 2007 January 17 1 # 2007 January 17
2 # 2 #
3 # The author disclaims copyright to this source code. 3 # The author disclaims copyright to this source code.
4 # 4 #
5 #************************************************************************* 5 #*************************************************************************
6 # This file implements regression tests for SQLite fts1 library. The 6 # This file implements regression tests for SQLite fts1 library. The
7 # focus here is testing handling of UPDATE when using UTF-16-encoded 7 # focus here is testing handling of UPDATE when using UTF-16-encoded
8 # databases. 8 # databases.
9 # 9 #
10 # $Id: fts1i.test,v 1.2 2007/01/24 03:43:20 drh Exp $ 10 # $Id: fts1i.test,v 1.2 2007/01/24 03:43:20 drh Exp $
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 sqlite3_step $STMT 79 sqlite3_step $STMT
80 sqlite3_finalize $STMT 80 sqlite3_finalize $STMT
81 set sql "UPDATE t1 SET content = 'cinq' WHERE rowid = 5" 81 set sql "UPDATE t1 SET content = 'cinq' WHERE rowid = 5"
82 set STMT [sqlite3_prepare $DB $sql -1 TAIL] 82 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
83 sqlite3_step $STMT 83 sqlite3_step $STMT
84 sqlite3_finalize $STMT 84 sqlite3_finalize $STMT
85 execsql {SELECT content FROM t1 WHERE rowid = 5} 85 execsql {SELECT content FROM t1 WHERE rowid = 5}
86 } {cinq} 86 } {cinq}
87 87
88 finish_test 88 finish_test
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/fts1f.test ('k') | third_party/sqlite/sqlite-src-3080704/test/fts1j.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698