OLD | NEW |
1 # 2013-11-26 | 1 # 2013-11-26 |
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 CREATE TABLE b1(a INTEGER PRIMARY KEY, b BLOB) WITHOUT ROWID; | 192 CREATE TABLE b1(a INTEGER PRIMARY KEY, b BLOB) WITHOUT ROWID; |
193 INSERT INTO b1 VALUES(1,x'0102030405060708090a0b0c0d0e0f'); | 193 INSERT INTO b1 VALUES(1,x'0102030405060708090a0b0c0d0e0f'); |
194 } {} | 194 } {} |
195 do_test without_rowid5-6.2 { | 195 do_test without_rowid5-6.2 { |
196 set rc [catch {db incrblob b1 b 1} msg] | 196 set rc [catch {db incrblob b1 b 1} msg] |
197 lappend rc $msg | 197 lappend rc $msg |
198 } {1 {cannot open table without rowid: b1}} | 198 } {1 {cannot open table without rowid: b1}} |
199 | 199 |
200 | 200 |
201 finish_test | 201 finish_test |
OLD | NEW |