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 deletions in the FTS3 module. | 7 # focus of this script is testing deletions in the FTS3 module. |
8 # | 8 # |
9 # $Id: fts3ae.test,v 1.1 2007/08/20 17:38:42 shess Exp $ | 9 # $Id: fts3ae.test,v 1.1 2007/08/20 17:38:42 shess Exp $ |
10 # | 10 # |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 do_test fts3ae-2.4 { | 77 do_test fts3ae-2.4 { |
78 execsql {SELECT rowid FROM t1 WHERE content MATCH 'four'} | 78 execsql {SELECT rowid FROM t1 WHERE content MATCH 'four'} |
79 } {8 9 11 12 14 15} | 79 } {8 9 11 12 14 15} |
80 | 80 |
81 do_test fts3ae-2.5 { | 81 do_test fts3ae-2.5 { |
82 execsql {SELECT rowid FROM t1 WHERE content MATCH 'five'} | 82 execsql {SELECT rowid FROM t1 WHERE content MATCH 'five'} |
83 } {17 18 20 21} | 83 } {17 18 20 21} |
84 | 84 |
85 finish_test | 85 finish_test |
OLD | NEW |