OLD | NEW |
1 # 2009 September 2 | 1 # 2009 September 2 |
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 #*********************************************************************** |
11 # This file implements regression tests for SQLite library. | 11 # This file implements regression tests for SQLite library. |
12 # | 12 # |
13 # This file implements tests to verify that ticket [d82e3f3721] has been | 13 # This file implements tests to verify that ticket [d82e3f3721] has been |
14 # fixed. | 14 # fixed. |
15 # | 15 # |
16 | 16 |
17 set testdir [file dirname $argv0] | 17 set testdir [file dirname $argv0] |
18 source $testdir/tester.tcl | 18 source $testdir/tester.tcl |
19 | 19 |
| 20 ifcapable !compound { |
| 21 finish_test |
| 22 return |
| 23 } |
| 24 |
20 do_test tkt-d82e3-1.1 { | 25 do_test tkt-d82e3-1.1 { |
21 db eval { | 26 db eval { |
22 CREATE TABLE t1(a INTEGER PRIMARY KEY AUTOINCREMENT, b); | 27 CREATE TABLE t1(a INTEGER PRIMARY KEY AUTOINCREMENT, b); |
23 INSERT INTO t1 VALUES(null,'abc'); | 28 INSERT INTO t1 VALUES(null,'abc'); |
24 INSERT INTO t1 VALUES(null,'def'); | 29 INSERT INTO t1 VALUES(null,'def'); |
25 DELETE FROM t1; | 30 DELETE FROM t1; |
26 INSERT INTO t1 VALUES(null,'ghi'); | 31 INSERT INTO t1 VALUES(null,'ghi'); |
27 SELECT * FROM t1; | 32 SELECT * FROM t1; |
28 } | 33 } |
29 } {3 ghi} | 34 } {3 ghi} |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 } {1 8 9} | 76 } {1 8 9} |
72 do_test tkt-d82e3-2.2 { | 77 do_test tkt-d82e3-2.2 { |
73 db eval { | 78 db eval { |
74 VACUUM; | 79 VACUUM; |
75 SELECT * FROM temp.t3 JOIN main.t3; | 80 SELECT * FROM temp.t3 JOIN main.t3; |
76 } | 81 } |
77 } {1 8 9} | 82 } {1 8 9} |
78 db2 close | 83 db2 close |
79 | 84 |
80 finish_test | 85 finish_test |
OLD | NEW |