| OLD | NEW |
| 1 # 2013-11-05 | 1 # 2013-11-05 |
| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 # | 347 # |
| 348 do_test conflict-11.3 { | 348 do_test conflict-11.3 { |
| 349 catchsql {INSERT INTO t1(a,b,c) VALUES(4,5,6), (5,6,4);} | 349 catchsql {INSERT INTO t1(a,b,c) VALUES(4,5,6), (5,6,4);} |
| 350 } {1 {UNIQUE constraint failed: t1.c}} | 350 } {1 {UNIQUE constraint failed: t1.c}} |
| 351 do_execsql_test conflict-11.4 { | 351 do_execsql_test conflict-11.4 { |
| 352 SELECT a,b,c FROM t1 ORDER BY a; | 352 SELECT a,b,c FROM t1 ORDER BY a; |
| 353 } {1 2 3 2 3 4 4 5 6} | 353 } {1 2 3 2 3 4 4 5 6} |
| 354 | 354 |
| 355 | 355 |
| 356 finish_test | 356 finish_test |
| OLD | NEW |