| OLD | NEW |
| 1 # 2007 March 9 | 1 # 2007 March 9 |
| 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. These | 6 # This file implements regression tests for SQLite library. These |
| 7 # make sure that fts2 insertion buffering is fully transparent when | 7 # make sure that fts2 insertion buffering is fully transparent when |
| 8 # using transactions. | 8 # using transactions. |
| 9 # | 9 # |
| 10 # $Id: fts2k.test,v 1.2 2007/08/10 23:47:04 shess Exp $ | 10 # $Id: fts2k.test,v 1.2 2007/08/10 23:47:04 shess Exp $ |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 execsql { | 96 execsql { |
| 97 BEGIN; | 97 BEGIN; |
| 98 INSERT INTO t1 (rowid, content) VALUES(13, "third dimension"); | 98 INSERT INTO t1 (rowid, content) VALUES(13, "third dimension"); |
| 99 CREATE TABLE x (c); | 99 CREATE TABLE x (c); |
| 100 COMMIT; | 100 COMMIT; |
| 101 SELECT rowid FROM t1 WHERE t1 MATCH 'dimension'; | 101 SELECT rowid FROM t1 WHERE t1 MATCH 'dimension'; |
| 102 } | 102 } |
| 103 } {13} | 103 } {13} |
| 104 | 104 |
| 105 finish_test | 105 finish_test |
| OLD | NEW |