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.
12 # The focus of this file is in making sure that rolling back
13 # a statement journal works correctly.
15 # $Id: tempdb.test,v 1.1 2008/04/15 00:02:00 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # Use a temporary database.
25 # Force a statement journal rollback on a database file that
26 # has never been opened.
31 CREATE TABLE t1(x UNIQUE);
33 INSERT INTO t2 VALUES('hello');
34 INSERT INTO t2 VALUES(NULL);
36 # Because of the transaction, the temporary database file
37 # has not even been opened yet. The following statement
38 # will cause a statement journal rollback on this non-existant
42 SELECT CASE WHEN y IS NULL THEN test_error('oops', 11) ELSE y END
47 # Verify that no writes occurred in t1.