OLD | NEW |
1 # 2001 September 15 | 1 # 2001 September 15 |
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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 execsql { | 395 execsql { |
396 CREATE TABLE t8(a, b); | 396 CREATE TABLE t8(a, b); |
397 INSERT INTO t8 VALUES('a', 'b'); | 397 INSERT INTO t8 VALUES('a', 'b'); |
398 INSERT INTO t8 VALUES('c', 'd'); | 398 INSERT INTO t8 VALUES('c', 'd'); |
399 PRAGMA count_changes = 1; | 399 PRAGMA count_changes = 1; |
400 } | 400 } |
401 } {} | 401 } {} |
402 do_test vacuum-10.2 { execsql VACUUM } {} | 402 do_test vacuum-10.2 { execsql VACUUM } {} |
403 | 403 |
404 finish_test | 404 finish_test |
OLD | NEW |