OLD | NEW |
1 # 2006 January 20 | 1 # 2006 January 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 execsql { | 69 execsql { |
70 INSERT INTO t1 VALUES(40); | 70 INSERT INTO t1 VALUES(40); |
71 INSERT INTO t1 VALUES(42); | 71 INSERT INTO t1 VALUES(42); |
72 } | 72 } |
73 catchsql { | 73 catchsql { |
74 SELECT x_count(*) FROM t1; | 74 SELECT x_count(*) FROM t1; |
75 } | 75 } |
76 } {1 {x_count totals to 42}} | 76 } {1 {x_count totals to 42}} |
77 | 77 |
78 finish_test | 78 finish_test |
OLD | NEW |