OLD | NEW |
1 # 2010 June 15 | 1 # 2010 June 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 2797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2808 db eval { SELECT * FROM t2 } | 2808 db eval { SELECT * FROM t2 } |
2809 sqlite3_db_status db CACHE_MISS 1 | 2809 sqlite3_db_status db CACHE_MISS 1 |
2810 } {0 3 0} | 2810 } {0 3 0} |
2811 | 2811 |
2812 do_test 43.3 { | 2812 do_test 43.3 { |
2813 db eval { SELECT * FROM t3 } | 2813 db eval { SELECT * FROM t3 } |
2814 sqlite3_db_status db CACHE_MISS 0 | 2814 sqlite3_db_status db CACHE_MISS 0 |
2815 } {0 1 0} | 2815 } {0 1 0} |
2816 | 2816 |
2817 finish_test | 2817 finish_test |
OLD | NEW |