diff options
Diffstat (limited to 'test/softheap1.test')
-rw-r--r-- | test/softheap1.test | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/softheap1.test b/test/softheap1.test index 62231a446..97f5aac34 100644 --- a/test/softheap1.test +++ b/test/softheap1.test @@ -13,7 +13,7 @@ # A database corruption bug that occurs in auto_vacuum mode when # the soft_heap_limit is set low enough to be triggered. # -# $Id: softheap1.test,v 1.1 2007/08/10 19:46:44 drh Exp $ +# $Id: softheap1.test,v 1.2 2007/08/12 20:07:59 drh Exp $ set testdir [file dirname $argv0] @@ -24,10 +24,16 @@ do_test softheap1-1.1 { execsql { PRAGMA auto_vacuum=1; CREATE TABLE t1(x); - INSERT INTO t1 VALUES(hex(randomblob(5000))); + INSERT INTO t1 VALUES(hex(randomblob(1000))); BEGIN; + } + execsql { CREATE TABLE t2 AS SELECT * FROM t1; + } + execsql { ROLLBACK; + } + execsql { PRAGMA integrity_check; } } {ok} |