OLD | NEW |
1 # 2009 August 06 | 1 # 2009 August 06 |
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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 lappend R [sqlite3_column_text $S1 0] | 606 lappend R [sqlite3_column_text $S1 0] |
607 } | 607 } |
608 concat [sqlite3_reset $S1] $R | 608 concat [sqlite3_reset $S1] $R |
609 } {SQLITE_OK aaa abb acc} | 609 } {SQLITE_OK aaa abb acc} |
610 do_test analyze3-5.1.3 { | 610 do_test analyze3-5.1.3 { |
611 sqlite3_finalize $S2 | 611 sqlite3_finalize $S2 |
612 sqlite3_finalize $S1 | 612 sqlite3_finalize $S1 |
613 } {SQLITE_OK} | 613 } {SQLITE_OK} |
614 | 614 |
615 finish_test | 615 finish_test |
OLD | NEW |