-C Fix\sa\scouple\sof\sminor\sproblems\swith\stransactions\sin\svirtual\stables.\s(CVS\s5081)
-D 2008-05-05T13:23:04
+C Avoid\sleaking\spage\sreferences\safter\san\sIO\serror\sis\sencountered.\s(CVS\s5082)
+D 2008-05-05T15:26:51
F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
F Makefile.in 25b3282a4ac39388632c2fb0e044ff494d490952
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
F src/auth.c c8b2ab5c8bad4bd90ed7c294694f48269162c627
F src/bitvec.c 8ec2212cfb702bc4f402c0b7ae7623d85320c714
F src/btmutex.c 483ced3c52205b04b97df69161fadbf87f4f1ea2
-F src/btree.c 6b16a43adb8f8c62b6344f5f364ead46b77e4cc6
+F src/btree.c 638f450da27c3f66ad081aae6888dc1961f76fc5
F src/btree.h 8826591bf54dd35fcf2e67473d5f1bae253861c7
F src/btreeInt.h dc04ee33d8eb84714b2acdf81336fbbf6e764530
F src/build.c a52d9d51341444a2131e3431608f245db80d9591
F test/interrupt.test 42e7cf98646fd9cb4a3b131a93ed3c50b9e149f1
F test/intpkey.test 537669fd535f62632ca64828e435b9e54e8d677f
F test/io.test 833a1746518ec3005aa7792f9bcb8f01923ff544
-F test/ioerr.test 5382046b2ef19b9084652e7d2d1e82ab33c0deda
+F test/ioerr.test 32cff40562447bda194ba67ad601170edbaed49b
F test/ioerr2.test b9c9a0491a812707762a7c002876553be54d9969
F test/ioerr3.test d3cec5e1a11ad6d27527d0d38573fbff14c71bdd
F test/join.test af0443185378b64878750aa1cf4b83c216f246b4
F test/tclsqlite.test 3dfb48f46de4353376fad835390b493ba066b4dc
F test/tempdb.test b88ac8a19823cf771d742bf61eef93ef337c06b1
F test/temptable.test 19b851b9e3e64d91e9867619b2a3f5fffee6e125
-F test/tester.tcl 72e180cc91fae17fd6ea43d1cd84558421105b72
+F test/tester.tcl 3f476ad2a7d8532b8de3ad7b0ed95995ee78f45b
F test/thread001.test 8fbd9559da0bbdc273e00318c7fd66c162020af7
F test/thread002.test 2c4ad2c386f60f6fe268cd91c769ee35b3c1fd0b
F test/thread1.test 776c9e459b75ba905193b351926ac4019b049f35
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P 270d47e8d0a20868879a95b66cb547e1e5b642d9
-R 384696721267b63cda5341ca180b7b1f
-U drh
-Z 11a335d880f2acd480b0e07b2674209e
+P 2275fc6ee06b17da5808cecfa5570ac6439eaf74
+R 6d76420da4b019df82bc43b649a5cfb1
+U danielk1977
+Z 562dc8fb914e4c15e377eee1cc4d777b
-2275fc6ee06b17da5808cecfa5570ac6439eaf74
\ No newline at end of file
+198c395b01140ef48b6913c00188ba7168bfb081
\ No newline at end of file
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: btree.c,v 1.454 2008/05/05 12:09:33 danielk1977 Exp $
+** $Id: btree.c,v 1.455 2008/05/05 15:26:51 danielk1977 Exp $
**
** This file implements a external (disk-based) database using BTrees.
** See the header comment on "btreeInt.h" for additional information.
** present in pTo before the copy operation, journal page i from pTo.
*/
if( i!=iSkip && i<=nToPage ){
- DbPage *pDbPage;
+ DbPage *pDbPage = 0;
rc = sqlite3PagerGet(pBtTo->pPager, i, &pDbPage);
- if( rc ){
- break;
- }
- rc = sqlite3PagerWrite(pDbPage);
- if( rc ){
- break;
+ if( rc==SQLITE_OK ){
+ rc = sqlite3PagerWrite(pDbPage);
}
- if( i>nFromPage ){
+ if( rc==SQLITE_OK && i>nFromPage ){
/* Yeah. It seems wierd to call DontWrite() right after Write(). But
** that is because the names of those procedures do not exactly
** represent what they do. Write() really means "put this page in the
# The tests in this file use special facilities that are only
# available in the SQLite test fixture.
#
-# $Id: ioerr.test,v 1.34 2008/01/16 17:46:38 drh Exp $
+# $Id: ioerr.test,v 1.35 2008/05/05 15:26:51 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
-
# If SQLITE_DEFAULT_AUTOVACUUM is set to true, then a simulated IO error
# on the 8th IO operation in the SQL script below doesn't report an error.
#
# file when the file on disk is only 1 page. The pager layer detects that
# this has happened and suppresses the error returned by the OS layer.
#
-do_ioerr_test ioerr-1 -erc 1 -sqlprep {
+do_ioerr_test ioerr-1 -erc 1 -ckrefcount 1 -sqlprep {
SELECT * FROM sqlite_master;
} -sqlbody {
CREATE TABLE t1(a,b,c);
# detected. Same reason as the 8th in the test case above.
#
ifcapable vacuum {
- do_ioerr_test ioerr-2 -cksum true -sqlprep {
+ do_ioerr_test ioerr-2 -cksum true -ckrefcount true -sqlprep {
BEGIN;
CREATE TABLE t1(a, b, c);
INSERT INTO t1 VALUES(1, randstr(50,50), randstr(50,50));
1 [expr [string match [execsql {pragma auto_vacuum}] 1]?9:-1]]
}
-do_ioerr_test ioerr-3 -tclprep {
+do_ioerr_test ioerr-3 -ckrefcount true -tclprep {
execsql {
PRAGMA cache_size = 10;
BEGIN;
# Test IO errors that can occur retrieving a record header that flows over
# onto an overflow page.
-do_ioerr_test ioerr-4 -tclprep {
+do_ioerr_test ioerr-4 -ckrefcount true -tclprep {
set sql "CREATE TABLE abc(a1"
for {set i 2} {$i<1300} {incr i} {
append sql ", a$i"
if {[string match [execsql {pragma auto_vacuum}] 1]} {
set ex [list 4 17]
}
- do_ioerr_test ioerr-5 -sqlprep {
+ do_ioerr_test ioerr-5 -ckrefcount true -sqlprep {
ATTACH 'test2.db' AS test2;
} -sqlbody {
BEGIN;
# transaction. This test only runs on UNIX.
ifcapable crashtest&&attach {
if {![catch {sqlite3 -has_codec} r] && !$r} {
- do_ioerr_test ioerr-6 -tclprep {
+ do_ioerr_test ioerr-6 -ckrefcount true -tclprep {
execsql {
ATTACH 'test2.db' as aux;
CREATE TABLE tx(a, b);
# short field (one that fits into a Mem buffer without mallocing
# for space).
#
-do_ioerr_test ioerr-8 -tclprep {
+do_ioerr_test ioerr-8 -ckrefcount true -tclprep {
execsql {
CREATE TABLE t1(a,b,c);
INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
# For test coverage: Cause an IO error whilst reading the master-journal
# name from a journal file.
if {$tcl_platform(platform)=="unix"} {
- do_ioerr_test ioerr-9 -tclprep {
+ do_ioerr_test ioerr-9 -ckrefcount true -tclprep {
execsql {
CREATE TABLE t1(a,b,c);
INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
# For test coverage: Cause an IO error during statement playback (i.e.
# a constraint).
-do_ioerr_test ioerr-10 -tclprep {
+do_ioerr_test ioerr-10 -ckrefcount true -tclprep {
execsql {
BEGIN;
CREATE TABLE t1(a PRIMARY KEY, b);
# Assertion fault bug reported by alex dimitrov.
#
-do_ioerr_test ioerr-11 -erc 1 -sqlprep {
+do_ioerr_test ioerr-11 -ckrefcount true -erc 1 -sqlprep {
CREATE TABLE A(Id INTEGER, Name TEXT);
INSERT INTO A(Id, Name) VALUES(1, 'Name');
} -sqlbody {
# memory-management is enabled.
#
ifcapable memorymanage {
- do_ioerr_test memmanage-ioerr1 -sqlprep {
+ do_ioerr_test memmanage-ioerr1 -ckrefcount true -sqlprep {
BEGIN;
CREATE TABLE t1(a, b, c);
INSERT INTO t1 VALUES(randstr(50,50), randstr(100,100), randstr(10,10));
# This file implements some common TCL routines used for regression
# testing the SQLite library
#
-# $Id: tester.tcl,v 1.116 2008/04/17 19:14:02 drh Exp $
+# $Id: tester.tcl,v 1.117 2008/05/05 15:26:51 danielk1977 Exp $
#
# What for user input before continuing. This gives an opportunity
set ::ioerropts(-erc) 0
set ::ioerropts(-count) 100000000
set ::ioerropts(-persist) 1
+ set ::ioerropts(-ckrefcount) 0
array set ::ioerropts $args
set ::go 1
expr { ($s && !$r && !$q) || (!$s && $r && $q) }
} {1}
+ if {$::go && $::sqlite_io_error_hardhit && $::ioerropts(-ckrefcount)} {
+ # Check that no page references were leaked. There should be
+ # a single reference if there is still an active transaction,
+ # or zero otherwise.
+ do_test $testname.$n.4 {
+ set bt [btree_from_db db]
+ db_enter db
+ array set stats [btree_pager_stats $bt]
+ db_leave db
+ set stats(ref)
+ } [expr {[sqlite3_get_autocommit db]?0:1}]
+ }
+
# If an IO error occured, then the checksum of the database should
# be the same as before the script that caused the IO error was run.
if {$::go && $::sqlite_io_error_hardhit && $::ioerropts(-cksum)} {
- do_test $testname.$n.4 {
+ do_test $testname.$n.5 {
catch {db close}
set ::DB [sqlite3 db test.db; sqlite3_connection_pointer db]
cksum