First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this file is verifying that a rollback in one statement
13 # caused by an ON CONFLICT ROLLBACK clause aborts any other pending
16 # $Id: rollback.test,v 1.6 2007/09/12 17:01:45 danielk1977 Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 set DB [sqlite3_connection_pointer db]
23 do_test rollback-1.1 {
26 INSERT INTO t1 VALUES(1);
27 INSERT INTO t1 VALUES(2);
28 INSERT INTO t1 VALUES(3);
29 INSERT INTO t1 VALUES(4);
35 do_test rollback-1.2 {
37 CREATE TABLE t3(a unique on conflict rollback);
38 INSERT INTO t3 SELECT a FROM t1;
40 INSERT INTO t1 SELECT * FROM t1;
44 do_test rollback-1.3 {
45 set STMT [sqlite3_prepare $DB "SELECT a FROM t1" -1 TAIL]
50 # This causes a ROLLBACK, which deletes the table out from underneath the
53 do_test rollback-1.4 {
55 INSERT INTO t3 SELECT a FROM t1;
57 } {1 {column a is not unique}}
59 # Try to continue with the SELECT statement
61 do_test rollback-1.5 {
65 # Restart the SELECT statement
67 do_test rollback-1.6 { sqlite3_reset $STMT } {SQLITE_ABORT}
69 do_test rollback-1.6 { sqlite3_reset $STMT } {SQLITE_OK}
72 do_test rollback-1.7 {
75 do_test rollback-1.8 {
78 do_test rollback-1.9 {
79 sqlite3_finalize $STMT