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

Side by Side Diff: third_party/sqlite/src/test/fts-9fd058691.test

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 # 2011 October 13 1 # 2011 October 13
2 # 2 #
3 # May you do good and not evil. 3 # May you do good and not evil.
4 # May you find forgiveness for yourself and forgive others. 4 # May you find forgiveness for yourself and forgive others.
5 # May you share freely, never taking more than you give. 5 # May you share freely, never taking more than you give.
6 # 6 #
7 #*********************************************************************** 7 #***********************************************************************
8 # 8 #
9 # This file implements regression tests for the FTS SQLite module. 9 # This file implements regression tests for the FTS SQLite module.
10 # 10 #
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 } {} 50 } {}
51 51
52 do_test 2.1 { 52 do_test 2.1 {
53 execsql { 53 execsql {
54 UPDATE fts SET tags = 'two' WHERE rowid = 2; 54 UPDATE fts SET tags = 'two' WHERE rowid = 2;
55 SELECT * FROM fts WHERE tags MATCH 'two'; 55 SELECT * FROM fts WHERE tags MATCH 'two';
56 } 56 }
57 } {two} 57 } {two}
58 58
59 finish_test 59 finish_test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698