sl@0
|
1 |
# 2001 October 12
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# Portions Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
|
sl@0
|
4 |
#
|
sl@0
|
5 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
6 |
# a legal notice, here is a blessing:
|
sl@0
|
7 |
#
|
sl@0
|
8 |
# May you do good and not evil.
|
sl@0
|
9 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
10 |
# May you share freely, never taking more than you give.
|
sl@0
|
11 |
#
|
sl@0
|
12 |
#***********************************************************************
|
sl@0
|
13 |
# This file implements regression tests for SQLite library. The
|
sl@0
|
14 |
# focus of this file is testing for correct handling of I/O errors
|
sl@0
|
15 |
# such as writes failing because the disk is full.
|
sl@0
|
16 |
#
|
sl@0
|
17 |
# The tests in this file use special facilities that are only
|
sl@0
|
18 |
# available in the SQLite test fixture.
|
sl@0
|
19 |
#
|
sl@0
|
20 |
# $Id: ioerr.test,v 1.41 2008/07/12 14:52:20 drh Exp $
|
sl@0
|
21 |
|
sl@0
|
22 |
set testdir [file dirname $argv0]
|
sl@0
|
23 |
source $testdir/tester.tcl
|
sl@0
|
24 |
|
sl@0
|
25 |
# If SQLITE_DEFAULT_AUTOVACUUM is set to true, then a simulated IO error
|
sl@0
|
26 |
# on the 8th IO operation in the SQL script below doesn't report an error.
|
sl@0
|
27 |
#
|
sl@0
|
28 |
# This is because the 8th IO call attempts to read page 2 of the database
|
sl@0
|
29 |
# file when the file on disk is only 1 page. The pager layer detects that
|
sl@0
|
30 |
# this has happened and suppresses the error returned by the OS layer.
|
sl@0
|
31 |
#
|
sl@0
|
32 |
do_ioerr_test ioerr-1 -erc 1 -ckrefcount 1 -sqlprep {
|
sl@0
|
33 |
SELECT * FROM sqlite_master;
|
sl@0
|
34 |
} -sqlbody {
|
sl@0
|
35 |
CREATE TABLE t1(a,b,c);
|
sl@0
|
36 |
SELECT * FROM sqlite_master;
|
sl@0
|
37 |
BEGIN TRANSACTION;
|
sl@0
|
38 |
INSERT INTO t1 VALUES(1,2,3);
|
sl@0
|
39 |
INSERT INTO t1 VALUES(4,5,6);
|
sl@0
|
40 |
ROLLBACK;
|
sl@0
|
41 |
SELECT * FROM t1;
|
sl@0
|
42 |
BEGIN TRANSACTION;
|
sl@0
|
43 |
INSERT INTO t1 VALUES(1,2,3);
|
sl@0
|
44 |
INSERT INTO t1 VALUES(4,5,6);
|
sl@0
|
45 |
COMMIT;
|
sl@0
|
46 |
SELECT * FROM t1;
|
sl@0
|
47 |
DELETE FROM t1 WHERE a<100;
|
sl@0
|
48 |
} -exclude [expr [string match [execsql {pragma auto_vacuum}] 1] ? 4 : 0]
|
sl@0
|
49 |
|
sl@0
|
50 |
# Test for IO errors during a VACUUM.
|
sl@0
|
51 |
#
|
sl@0
|
52 |
# The first IO call is excluded from the test. This call attempts to read
|
sl@0
|
53 |
# the file-header of the temporary database used by VACUUM. Since the
|
sl@0
|
54 |
# database doesn't exist at that point, the IO error is not detected.
|
sl@0
|
55 |
#
|
sl@0
|
56 |
# Additionally, if auto-vacuum is enabled, the 12th IO error is not
|
sl@0
|
57 |
# detected. Same reason as the 8th in the test case above.
|
sl@0
|
58 |
#
|
sl@0
|
59 |
ifcapable vacuum {
|
sl@0
|
60 |
do_ioerr_test ioerr-2 -cksum true -ckrefcount true -sqlprep {
|
sl@0
|
61 |
BEGIN;
|
sl@0
|
62 |
CREATE TABLE t1(a, b, c);
|
sl@0
|
63 |
INSERT INTO t1 VALUES(1, randstr(50,50), randstr(50,50));
|
sl@0
|
64 |
INSERT INTO t1 SELECT a+2, b||'-'||rowid, c||'-'||rowid FROM t1;
|
sl@0
|
65 |
INSERT INTO t1 SELECT a+4, b||'-'||rowid, c||'-'||rowid FROM t1;
|
sl@0
|
66 |
INSERT INTO t1 SELECT a+8, b||'-'||rowid, c||'-'||rowid FROM t1;
|
sl@0
|
67 |
INSERT INTO t1 SELECT a+16, b||'-'||rowid, c||'-'||rowid FROM t1;
|
sl@0
|
68 |
INSERT INTO t1 SELECT a+32, b||'-'||rowid, c||'-'||rowid FROM t1;
|
sl@0
|
69 |
INSERT INTO t1 SELECT a+64, b||'-'||rowid, c||'-'||rowid FROM t1;
|
sl@0
|
70 |
INSERT INTO t1 SELECT a+128, b||'-'||rowid, c||'-'||rowid FROM t1;
|
sl@0
|
71 |
INSERT INTO t1 VALUES(1, randstr(600,600), randstr(600,600));
|
sl@0
|
72 |
CREATE TABLE t2 AS SELECT * FROM t1;
|
sl@0
|
73 |
CREATE TABLE t3 AS SELECT * FROM t1;
|
sl@0
|
74 |
COMMIT;
|
sl@0
|
75 |
DROP TABLE t2;
|
sl@0
|
76 |
} -sqlbody {
|
sl@0
|
77 |
VACUUM;
|
sl@0
|
78 |
} -exclude [list \
|
sl@0
|
79 |
1 [expr [string match [execsql {pragma auto_vacuum}] 1]?9:-1]]
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
do_ioerr_test ioerr-3 -ckrefcount true -tclprep {
|
sl@0
|
83 |
execsql {
|
sl@0
|
84 |
PRAGMA cache_size = 10;
|
sl@0
|
85 |
BEGIN;
|
sl@0
|
86 |
CREATE TABLE abc(a);
|
sl@0
|
87 |
INSERT INTO abc VALUES(randstr(1500,1500)); -- Page 4 is overflow
|
sl@0
|
88 |
}
|
sl@0
|
89 |
for {set i 0} {$i<150} {incr i} {
|
sl@0
|
90 |
execsql {
|
sl@0
|
91 |
INSERT INTO abc VALUES(randstr(100,100));
|
sl@0
|
92 |
}
|
sl@0
|
93 |
}
|
sl@0
|
94 |
execsql COMMIT
|
sl@0
|
95 |
} -sqlbody {
|
sl@0
|
96 |
CREATE TABLE abc2(a);
|
sl@0
|
97 |
BEGIN;
|
sl@0
|
98 |
DELETE FROM abc WHERE length(a)>100;
|
sl@0
|
99 |
UPDATE abc SET a = randstr(90,90);
|
sl@0
|
100 |
COMMIT;
|
sl@0
|
101 |
CREATE TABLE abc3(a);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
# Test IO errors that can occur retrieving a record header that flows over
|
sl@0
|
105 |
# onto an overflow page.
|
sl@0
|
106 |
do_ioerr_test ioerr-4 -ckrefcount true -tclprep {
|
sl@0
|
107 |
set sql "CREATE TABLE abc(a1"
|
sl@0
|
108 |
for {set i 2} {$i<1300} {incr i} {
|
sl@0
|
109 |
append sql ", a$i"
|
sl@0
|
110 |
}
|
sl@0
|
111 |
append sql ");"
|
sl@0
|
112 |
execsql $sql
|
sl@0
|
113 |
execsql {INSERT INTO abc (a1) VALUES(NULL)}
|
sl@0
|
114 |
} -sqlbody {
|
sl@0
|
115 |
SELECT * FROM abc;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
|
sl@0
|
119 |
# Test IO errors that may occur during a multi-file commit.
|
sl@0
|
120 |
#
|
sl@0
|
121 |
# Tests 8 and 17 are excluded when auto-vacuum is enabled for the same
|
sl@0
|
122 |
# reason as in test cases ioerr-1.XXX
|
sl@0
|
123 |
ifcapable attach {
|
sl@0
|
124 |
set ex ""
|
sl@0
|
125 |
if {[string match [execsql {pragma auto_vacuum}] 1]} {
|
sl@0
|
126 |
set ex [list 4 17]
|
sl@0
|
127 |
}
|
sl@0
|
128 |
do_ioerr_test ioerr-5 -restoreprng 0 -ckrefcount true -sqlprep {
|
sl@0
|
129 |
ATTACH 'test2.db' AS test2;
|
sl@0
|
130 |
} -sqlbody {
|
sl@0
|
131 |
BEGIN;
|
sl@0
|
132 |
CREATE TABLE t1(a,b,c);
|
sl@0
|
133 |
CREATE TABLE test2.t2(a,b,c);
|
sl@0
|
134 |
COMMIT;
|
sl@0
|
135 |
} -exclude $ex
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
# Test IO errors when replaying two hot journals from a 2-file
|
sl@0
|
139 |
# transaction. This test only runs on UNIX.
|
sl@0
|
140 |
ifcapable crashtest&&attach {
|
sl@0
|
141 |
if {![catch {sqlite3 -has_codec} r] && !$r} {
|
sl@0
|
142 |
do_ioerr_test ioerr-6 -ckrefcount true -tclprep {
|
sl@0
|
143 |
execsql {
|
sl@0
|
144 |
ATTACH 'test2.db' as aux;
|
sl@0
|
145 |
CREATE TABLE tx(a, b);
|
sl@0
|
146 |
CREATE TABLE aux.ty(a, b);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
set rc [crashsql -delay 2 -file test2.db-journal {
|
sl@0
|
149 |
ATTACH 'test2.db' as aux;
|
sl@0
|
150 |
PRAGMA cache_size = 10;
|
sl@0
|
151 |
BEGIN;
|
sl@0
|
152 |
CREATE TABLE aux.t2(a, b, c);
|
sl@0
|
153 |
CREATE TABLE t1(a, b, c);
|
sl@0
|
154 |
COMMIT;
|
sl@0
|
155 |
}]
|
sl@0
|
156 |
if {$rc!="1 {child process exited abnormally}"} {
|
sl@0
|
157 |
error "Wrong error message: $rc"
|
sl@0
|
158 |
}
|
sl@0
|
159 |
} -sqlbody {
|
sl@0
|
160 |
SELECT * FROM sqlite_master;
|
sl@0
|
161 |
SELECT * FROM aux.sqlite_master;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
}
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
# Test handling of IO errors that occur while rolling back hot journal
|
sl@0
|
167 |
# files.
|
sl@0
|
168 |
#
|
sl@0
|
169 |
# These tests can't be run on windows because the windows version of
|
sl@0
|
170 |
# SQLite holds a mandatory exclusive lock on journal files it has open.
|
sl@0
|
171 |
#
|
sl@0
|
172 |
if {$tcl_platform(platform)!="windows" && $tcl_platform(platform)!="symbian"} {
|
sl@0
|
173 |
do_ioerr_test ioerr-7 -tclprep {
|
sl@0
|
174 |
db close
|
sl@0
|
175 |
sqlite3 db2 test2.db
|
sl@0
|
176 |
db2 eval {
|
sl@0
|
177 |
PRAGMA synchronous = 0;
|
sl@0
|
178 |
CREATE TABLE t1(a, b);
|
sl@0
|
179 |
INSERT INTO t1 VALUES(1, 2);
|
sl@0
|
180 |
BEGIN;
|
sl@0
|
181 |
INSERT INTO t1 VALUES(3, 4);
|
sl@0
|
182 |
}
|
sl@0
|
183 |
copy_file test2.db test.db
|
sl@0
|
184 |
copy_file test2.db-journal test.db-journal
|
sl@0
|
185 |
db2 close
|
sl@0
|
186 |
} -tclbody {
|
sl@0
|
187 |
sqlite3 db test.db
|
sl@0
|
188 |
db eval {
|
sl@0
|
189 |
SELECT * FROM t1;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
} -exclude 1
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
# For test coverage: Cause an I/O failure while trying to read a
|
sl@0
|
195 |
# short field (one that fits into a Mem buffer without mallocing
|
sl@0
|
196 |
# for space).
|
sl@0
|
197 |
#
|
sl@0
|
198 |
do_ioerr_test ioerr-8 -ckrefcount true -tclprep {
|
sl@0
|
199 |
execsql {
|
sl@0
|
200 |
CREATE TABLE t1(a,b,c);
|
sl@0
|
201 |
INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
|
sl@0
|
202 |
}
|
sl@0
|
203 |
db close
|
sl@0
|
204 |
sqlite3 db test.db
|
sl@0
|
205 |
} -sqlbody {
|
sl@0
|
206 |
SELECT c FROM t1;
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
# For test coverage: Cause an IO error whilst reading the master-journal
|
sl@0
|
210 |
# name from a journal file.
|
sl@0
|
211 |
if {$tcl_platform(platform)=="unix"} {
|
sl@0
|
212 |
do_ioerr_test ioerr-9 -ckrefcount true -tclprep {
|
sl@0
|
213 |
execsql {
|
sl@0
|
214 |
CREATE TABLE t1(a,b,c);
|
sl@0
|
215 |
INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
|
sl@0
|
216 |
BEGIN;
|
sl@0
|
217 |
INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
|
sl@0
|
218 |
}
|
sl@0
|
219 |
copy_file test.db-journal test2.db-journal
|
sl@0
|
220 |
execsql {
|
sl@0
|
221 |
COMMIT;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
copy_file test2.db-journal test.db-journal
|
sl@0
|
224 |
set f [open test.db-journal a]
|
sl@0
|
225 |
fconfigure $f -encoding binary
|
sl@0
|
226 |
puts -nonewline $f "hello"
|
sl@0
|
227 |
puts -nonewline $f "\x00\x00\x00\x05\x01\x02\x03\x04"
|
sl@0
|
228 |
puts -nonewline $f "\xd9\xd5\x05\xf9\x20\xa1\x63\xd7"
|
sl@0
|
229 |
close $f
|
sl@0
|
230 |
} -sqlbody {
|
sl@0
|
231 |
SELECT a FROM t1;
|
sl@0
|
232 |
}
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
# For test coverage: Cause an IO error during statement playback (i.e.
|
sl@0
|
236 |
# a constraint).
|
sl@0
|
237 |
do_ioerr_test ioerr-10 -ckrefcount true -tclprep {
|
sl@0
|
238 |
execsql {
|
sl@0
|
239 |
BEGIN;
|
sl@0
|
240 |
CREATE TABLE t1(a PRIMARY KEY, b);
|
sl@0
|
241 |
}
|
sl@0
|
242 |
for {set i 0} {$i < 500} {incr i} {
|
sl@0
|
243 |
execsql {INSERT INTO t1 VALUES(:i, 'hello world');}
|
sl@0
|
244 |
}
|
sl@0
|
245 |
execsql {
|
sl@0
|
246 |
COMMIT;
|
sl@0
|
247 |
}
|
sl@0
|
248 |
} -tclbody {
|
sl@0
|
249 |
|
sl@0
|
250 |
catch {execsql {
|
sl@0
|
251 |
BEGIN;
|
sl@0
|
252 |
INSERT INTO t1 VALUES('abc', 123);
|
sl@0
|
253 |
INSERT INTO t1 VALUES('def', 123);
|
sl@0
|
254 |
INSERT INTO t1 VALUES('ghi', 123);
|
sl@0
|
255 |
INSERT INTO t1 SELECT (a+500)%900, 'good string' FROM t1;
|
sl@0
|
256 |
}} msg
|
sl@0
|
257 |
|
sl@0
|
258 |
if {$msg != "column a is not unique"} {
|
sl@0
|
259 |
error $msg
|
sl@0
|
260 |
}
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
# Assertion fault bug reported by alex dimitrov.
|
sl@0
|
264 |
#
|
sl@0
|
265 |
do_ioerr_test ioerr-11 -ckrefcount true -erc 1 -sqlprep {
|
sl@0
|
266 |
CREATE TABLE A(Id INTEGER, Name TEXT);
|
sl@0
|
267 |
INSERT INTO A(Id, Name) VALUES(1, 'Name');
|
sl@0
|
268 |
} -sqlbody {
|
sl@0
|
269 |
UPDATE A SET Id = 2, Name = 'Name2' WHERE Id = 1;
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
# Test that an io error encountered in a sync() caused by a call to
|
sl@0
|
273 |
# sqlite3_release_memory() is handled Ok. Only try this if
|
sl@0
|
274 |
# memory-management is enabled.
|
sl@0
|
275 |
#
|
sl@0
|
276 |
ifcapable memorymanage {
|
sl@0
|
277 |
do_ioerr_test memmanage-ioerr1 -ckrefcount true -sqlprep {
|
sl@0
|
278 |
BEGIN;
|
sl@0
|
279 |
CREATE TABLE t1(a, b, c);
|
sl@0
|
280 |
INSERT INTO t1 VALUES(randstr(50,50), randstr(100,100), randstr(10,10));
|
sl@0
|
281 |
INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
|
sl@0
|
282 |
INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
|
sl@0
|
283 |
INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
|
sl@0
|
284 |
INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
|
sl@0
|
285 |
INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
|
sl@0
|
286 |
} -tclbody {
|
sl@0
|
287 |
sqlite3_release_memory
|
sl@0
|
288 |
} -sqlbody {
|
sl@0
|
289 |
COMMIT;
|
sl@0
|
290 |
}
|
sl@0
|
291 |
}
|
sl@0
|
292 |
|
sl@0
|
293 |
ifcapable pager_pragmas&&autovacuum {
|
sl@0
|
294 |
do_ioerr_test ioerr-12 -ckrefcount true -erc 1 -sqlprep {
|
sl@0
|
295 |
PRAGMA page_size = 512;
|
sl@0
|
296 |
PRAGMA auto_vacuum = incremental;
|
sl@0
|
297 |
CREATE TABLE t1(x);
|
sl@0
|
298 |
INSERT INTO t1 VALUES( randomblob(1 * (512-4)) );
|
sl@0
|
299 |
INSERT INTO t1 VALUES( randomblob(110 * (512-4)) );
|
sl@0
|
300 |
INSERT INTO t1 VALUES( randomblob(2 * (512-4)) );
|
sl@0
|
301 |
INSERT INTO t1 VALUES( randomblob(110 * (512-4)) );
|
sl@0
|
302 |
INSERT INTO t1 VALUES( randomblob(3 * (512-4)) );
|
sl@0
|
303 |
DELETE FROM t1 WHERE rowid = 3;
|
sl@0
|
304 |
PRAGMA incremental_vacuum = 2;
|
sl@0
|
305 |
DELETE FROM t1 WHERE rowid = 1;
|
sl@0
|
306 |
} -sqlbody {
|
sl@0
|
307 |
PRAGMA incremental_vacuum = 1;
|
sl@0
|
308 |
}
|
sl@0
|
309 |
}
|
sl@0
|
310 |
|
sl@0
|
311 |
# Usually, after a new page is allocated from the end of the file, it does
|
sl@0
|
312 |
# not need to be written to the journal. The exception is when the new page
|
sl@0
|
313 |
# shares its sector with an existing page that does need to be journalled.
|
sl@0
|
314 |
# This test case provokes this condition to test for the sake of coverage
|
sl@0
|
315 |
# that an IO error while journalling the coresident page is handled correctly.
|
sl@0
|
316 |
#
|
sl@0
|
317 |
sqlite3_simulate_device -char {} -sectorsize 2048
|
sl@0
|
318 |
do_ioerr_test ioerr-12 -ckrefcount true -erc 1 -tclprep {
|
sl@0
|
319 |
db close
|
sl@0
|
320 |
sqlite3 db test.db -vfs devsym
|
sl@0
|
321 |
|
sl@0
|
322 |
# Create a test database. Page 2 is the root page of table t1. The only
|
sl@0
|
323 |
# row inserted into t1 has an overflow page - page 3. Page 3 will be
|
sl@0
|
324 |
# coresident on the 2048 byte sector with the next page to be allocated.
|
sl@0
|
325 |
#
|
sl@0
|
326 |
db eval { PRAGMA page_size = 1024 }
|
sl@0
|
327 |
db eval { CREATE TABLE t1(x) }
|
sl@0
|
328 |
db eval { INSERT INTO t1 VALUES(randomblob(1100)); }
|
sl@0
|
329 |
} -tclbody {
|
sl@0
|
330 |
db eval { INSERT INTO t1 VALUES(randomblob(2000)); }
|
sl@0
|
331 |
}
|
sl@0
|
332 |
sqlite3_simulate_device -char {} -sectorsize 0
|
sl@0
|
333 |
catch {db close}
|
sl@0
|
334 |
|
sl@0
|
335 |
do_ioerr_test ioerr-13 -ckrefcount true -erc 1 -sqlprep {
|
sl@0
|
336 |
PRAGMA auto_vacuum = incremental;
|
sl@0
|
337 |
CREATE TABLE t1(x);
|
sl@0
|
338 |
CREATE TABLE t2(x);
|
sl@0
|
339 |
INSERT INTO t2 VALUES(randomblob(1500));
|
sl@0
|
340 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
341 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
342 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
343 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
344 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
345 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
346 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
347 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
348 |
INSERT INTO t1 VALUES(randomblob(20));
|
sl@0
|
349 |
INSERT INTO t1 SELECT x FROM t1;
|
sl@0
|
350 |
INSERT INTO t1 SELECT x FROM t1;
|
sl@0
|
351 |
INSERT INTO t1 SELECT x FROM t1;
|
sl@0
|
352 |
INSERT INTO t1 SELECT x FROM t1;
|
sl@0
|
353 |
INSERT INTO t1 SELECT x FROM t1;
|
sl@0
|
354 |
INSERT INTO t1 SELECT x FROM t1; /* 64 entries in t1 */
|
sl@0
|
355 |
INSERT INTO t1 SELECT x FROM t1 LIMIT 14; /* 78 entries in t1 */
|
sl@0
|
356 |
DELETE FROM t2 WHERE rowid = 3;
|
sl@0
|
357 |
} -sqlbody {
|
sl@0
|
358 |
-- This statement uses the balance_quick() optimization. The new page
|
sl@0
|
359 |
-- is appended to the database file. But the overflow page used by
|
sl@0
|
360 |
-- the new record will be positioned near the start of the database
|
sl@0
|
361 |
-- file, in the gap left by the "DELETE FROM t2 WHERE rowid=3" statement
|
sl@0
|
362 |
-- above.
|
sl@0
|
363 |
--
|
sl@0
|
364 |
-- The point of this is that the statement wil need to update two pointer
|
sl@0
|
365 |
-- map pages. Which introduces another opportunity for an IO error.
|
sl@0
|
366 |
--
|
sl@0
|
367 |
INSERT INTO t1 VALUES(randomblob(2000));
|
sl@0
|
368 |
}
|
sl@0
|
369 |
|
sl@0
|
370 |
do_ioerr_test ioerr-14 -ckrefcount true -erc 1 -sqlprep {
|
sl@0
|
371 |
PRAGMA auto_vacuum = incremental;
|
sl@0
|
372 |
CREATE TABLE t1(x);
|
sl@0
|
373 |
CREATE TABLE t2(x);
|
sl@0
|
374 |
INSERT INTO t2 VALUES(randomblob(1500));
|
sl@0
|
375 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
376 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
377 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
378 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
379 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
380 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
381 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
382 |
INSERT INTO t2 SELECT randomblob(1500) FROM t2;
|
sl@0
|
383 |
|
sl@0
|
384 |
-- This statement inserts a row into t1 with an overflow page at the
|
sl@0
|
385 |
-- end of the file. A long way from its parent (the root of t1).
|
sl@0
|
386 |
INSERT INTO t1 VALUES(randomblob(1500));
|
sl@0
|
387 |
DELETE FROM t2 WHERE rowid<10;
|
sl@0
|
388 |
} -sqlbody {
|
sl@0
|
389 |
-- This transaction will cause the root-page of table t1 to divide
|
sl@0
|
390 |
-- (by calling balance_deeper()). When it does, the "parent" page of the
|
sl@0
|
391 |
-- overflow page inserted in the -sqlprep block above will change and
|
sl@0
|
392 |
-- the corresponding pointer map page be updated. This test case attempts
|
sl@0
|
393 |
-- to cause an IO error during the pointer map page update.
|
sl@0
|
394 |
--
|
sl@0
|
395 |
BEGIN;
|
sl@0
|
396 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
397 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
398 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
399 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
400 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
401 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
402 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
403 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
404 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
405 |
INSERT INTO t1 VALUES(randomblob(100));
|
sl@0
|
406 |
COMMIT;
|
sl@0
|
407 |
}
|
sl@0
|
408 |
|
sl@0
|
409 |
finish_test
|