OLD | NEW |
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 Loading... |
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 |
OLD | NEW |