OLD | NEW |
1 # 2006 October 19 | 1 # 2006 October 19 |
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 library. The | 6 # This file implements regression tests for SQLite library. The |
7 # focus of this script is testing updates in the FTS2 module. | 7 # focus of this script is testing updates in the FTS2 module. |
8 # | 8 # |
9 # $Id: fts2f.test,v 1.2 2007/02/23 00:14:06 shess Exp $ | 9 # $Id: fts2f.test,v 1.2 2007/02/23 00:14:06 shess Exp $ |
10 # | 10 # |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 81 |
82 do_test fts2f-2.4 { | 82 do_test fts2f-2.4 { |
83 execsql {SELECT rowid FROM t1 WHERE content MATCH 'four'} | 83 execsql {SELECT rowid FROM t1 WHERE content MATCH 'four'} |
84 } {9 11 12 14} | 84 } {9 11 12 14} |
85 | 85 |
86 do_test fts2f-2.5 { | 86 do_test fts2f-2.5 { |
87 execsql {SELECT rowid FROM t1 WHERE content MATCH 'five'} | 87 execsql {SELECT rowid FROM t1 WHERE content MATCH 'five'} |
88 } {8 17 18 20 21 22} | 88 } {8 17 18 20 21 22} |
89 | 89 |
90 finish_test | 90 finish_test |
OLD | NEW |