| OLD | NEW |
| 1 # 2014 Dec 20 | 1 # 2014 Dec 20 |
| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 SELECT rowid FROM x4 WHERE x4 MATCH 'a' | 179 SELECT rowid FROM x4 WHERE x4 MATCH 'a' |
| 180 } {1 2 3 4} | 180 } {1 2 3 4} |
| 181 | 181 |
| 182 set res [db one {SELECT count(*) FROM x4_data}] | 182 set res [db one {SELECT count(*) FROM x4_data}] |
| 183 do_execsql_test 5.2 { | 183 do_execsql_test 5.2 { |
| 184 SELECT count(fts5_decode(rowid, block)) FROM x4_data; | 184 SELECT count(fts5_decode(rowid, block)) FROM x4_data; |
| 185 } $res | 185 } $res |
| 186 | 186 |
| 187 finish_test | 187 finish_test |
| 188 | 188 |
| OLD | NEW |