| OLD | NEW |
| 1 # 2006 October 31 | 1 # 2006 October 31 |
| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 do_test fts3ah-1.4 { | 63 do_test fts3ah-1.4 { |
| 64 execsql "SELECT rowid FROM t1 WHERE t1 MATCH '$aterm -$xterm'" | 64 execsql "SELECT rowid FROM t1 WHERE t1 MATCH '$aterm -$xterm'" |
| 65 } {1 3} | 65 } {1 3} |
| 66 | 66 |
| 67 do_test fts3ah-1.5 { | 67 do_test fts3ah-1.5 { |
| 68 execsql "SELECT rowid FROM t1 WHERE t1 MATCH '\"$aterm $bterm\"'" | 68 execsql "SELECT rowid FROM t1 WHERE t1 MATCH '\"$aterm $bterm\"'" |
| 69 } {1} | 69 } {1} |
| 70 | 70 |
| 71 finish_test | 71 finish_test |
| OLD | NEW |