| OLD | NEW |
| 1 # 2004 Jun 29 | 1 # 2004 Jun 29 |
| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 db trace trace_proc | 236 db trace trace_proc |
| 237 set TRACE_OUT {} | 237 set TRACE_OUT {} |
| 238 execsql {SELECT '$::t6str', [$::t6str], $::t6str, ?1, "?1", $::t6str FROM t6} | 238 execsql {SELECT '$::t6str', [$::t6str], $::t6str, ?1, "?1", $::t6str FROM t6} |
| 239 } {{$::t6str} 1 {test-six y'all} {test-six y'all} 2 {test-six y'all}} | 239 } {{$::t6str} 1 {test-six y'all} {test-six y'all} 2 {test-six y'all}} |
| 240 do_test trace-6.201 { | 240 do_test trace-6.201 { |
| 241 set TRACE_OUT | 241 set TRACE_OUT |
| 242 } {{SELECT '$::t6str', [$::t6str], 'test-six y''all', 'test-six y''all', "?1", '
test-six y''all' FROM t6}} | 242 } {{SELECT '$::t6str', [$::t6str], 'test-six y''all', 'test-six y''all', "?1", '
test-six y''all' FROM t6}} |
| 243 | 243 |
| 244 | 244 |
| 245 finish_test | 245 finish_test |
| OLD | NEW |