sl@0
|
1 |
# 2001 September 15
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
# This file implements regression tests for SQLite library. The
|
sl@0
|
12 |
# focus of this script is page cache subsystem.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: pager3.test,v 1.3 2005/03/29 03:11:00 danielk1977 Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# This test makes sure the database file is truncated back to the correct
|
sl@0
|
21 |
# length on a rollback.
|
sl@0
|
22 |
#
|
sl@0
|
23 |
# After some preliminary setup, a transaction is start at NOTE (1).
|
sl@0
|
24 |
# The create table on the following line allocates an additional page
|
sl@0
|
25 |
# at the end of the database file. But that page is not written because
|
sl@0
|
26 |
# the database still has a RESERVED lock, not an EXCLUSIVE lock. The
|
sl@0
|
27 |
# new page is held in memory and the size of the file is unchanged.
|
sl@0
|
28 |
# The insert at NOTE (2) begins adding additional pages. Then it hits
|
sl@0
|
29 |
# a constraint error and aborts. The abort causes sqlite3OsTruncate()
|
sl@0
|
30 |
# to be called to restore the file to the same length as it was after
|
sl@0
|
31 |
# the create table. But the create table results had not yet been
|
sl@0
|
32 |
# written so the file is actually lengthened by this truncate. Finally,
|
sl@0
|
33 |
# the rollback at NOTE (3) is called to undo all the changes since the
|
sl@0
|
34 |
# begin. This rollback should truncate the database again.
|
sl@0
|
35 |
#
|
sl@0
|
36 |
# This test was added because the second truncate at NOTE (3) was not
|
sl@0
|
37 |
# occurring on early versions of SQLite 3.0.
|
sl@0
|
38 |
#
|
sl@0
|
39 |
ifcapable tempdb {
|
sl@0
|
40 |
do_test pager3-1.1 {
|
sl@0
|
41 |
execsql {
|
sl@0
|
42 |
create table t1(a unique, b);
|
sl@0
|
43 |
insert into t1 values(1, 'abcdefghijklmnopqrstuvwxyz');
|
sl@0
|
44 |
insert into t1 values(2, 'abcdefghijklmnopqrstuvwxyz');
|
sl@0
|
45 |
update t1 set b=b||a||b;
|
sl@0
|
46 |
update t1 set b=b||a||b;
|
sl@0
|
47 |
update t1 set b=b||a||b;
|
sl@0
|
48 |
update t1 set b=b||a||b;
|
sl@0
|
49 |
update t1 set b=b||a||b;
|
sl@0
|
50 |
update t1 set b=b||a||b;
|
sl@0
|
51 |
create temp table t2 as select * from t1;
|
sl@0
|
52 |
begin; ------- NOTE (1)
|
sl@0
|
53 |
create table t3(x);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
catchsql {
|
sl@0
|
56 |
insert into t1 select 4-a, b from t2; ----- NOTE (2)
|
sl@0
|
57 |
}
|
sl@0
|
58 |
execsql {
|
sl@0
|
59 |
rollback; ------- NOTE (3)
|
sl@0
|
60 |
}
|
sl@0
|
61 |
db close
|
sl@0
|
62 |
sqlite3 db test.db
|
sl@0
|
63 |
set r ok
|
sl@0
|
64 |
ifcapable {integrityck} {
|
sl@0
|
65 |
set r [execsql {
|
sl@0
|
66 |
pragma integrity_check;
|
sl@0
|
67 |
}]
|
sl@0
|
68 |
}
|
sl@0
|
69 |
set r
|
sl@0
|
70 |
} ok
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
finish_test
|