OLD | NEW |
1 # 2011 January 04 | 1 # 2011 January 04 |
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 INSERT INTO t2 VALUES(5, 'aBc', 'aBc', 'aBc'); | 102 INSERT INTO t2 VALUES(5, 'aBc', 'aBc', 'aBc'); |
103 INSERT INTO t2 VALUES(6, 'aBC', 'aBC', 'aBC'); | 103 INSERT INTO t2 VALUES(6, 'aBC', 'aBC', 'aBC'); |
104 INSERT INTO t2 VALUES(7, 'aBc ', 'aBc ', 'aBc '); | 104 INSERT INTO t2 VALUES(7, 'aBc ', 'aBc ', 'aBc '); |
105 INSERT INTO t2 VALUES(8, 'aBC ', 'aBC ', 'aBC '); | 105 INSERT INTO t2 VALUES(8, 'aBC ', 'aBC ', 'aBC '); |
106 ANALYZE; | 106 ANALYZE; |
107 SELECT idx, stat FROM sqlite_stat1 WHERE tbl='t2' ORDER BY idx; | 107 SELECT idx, stat FROM sqlite_stat1 WHERE tbl='t2' ORDER BY idx; |
108 } | 108 } |
109 } {t2a {8 4} t2b {8 2} t2c {8 1} t2c2 {8 4} t2c3 {8 2}} | 109 } {t2a {8 4} t2b {8 2} t2c {8 1} t2c2 {8 4} t2c3 {8 2}} |
110 | 110 |
111 finish_test | 111 finish_test |
OLD | NEW |