OLD | NEW |
1 # 2015 April 21 | 1 # 2015 April 21 |
2 # | 2 # |
3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
5 # | 5 # |
6 # May you do good and not evil. | 6 # May you do good and not evil. |
7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
9 # | 9 # |
10 #*********************************************************************** | 10 #*********************************************************************** |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 set i 0 | 188 set i 0 |
189 foreach v $vocab { | 189 foreach v $vocab { |
190 do_execsql_test 3.3.[incr i] { | 190 do_execsql_test 3.3.[incr i] { |
191 SELECT rowid FROM abc WHERE abc MATCH $v | 191 SELECT rowid FROM abc WHERE abc MATCH $v |
192 } {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16} | 192 } {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16} |
193 } | 193 } |
194 | 194 |
195 | 195 |
196 finish_test | 196 finish_test |
197 | 197 |
OLD | NEW |