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. The
12 # focus of this script testing the ability of SQLite to handle database
13 # files larger than 4GB.
15 # $Id: bigfile.test,v 1.10 2007/08/18 10:59:21 danielk1977 Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 # If SQLITE_DISABLE_LFS is defined, omit this file.
27 # These tests only work for Tcl version 8.4 and later. Prior to 8.4,
28 # Tcl was unable to handle large files.
30 scan $::tcl_version %f vx
33 # Mac OS X does not handle large files efficiently. So skip this test
35 if {$tcl_platform(os)=="Darwin"} return
37 # This is the md5 checksum of all the data in table t1 as created
38 # by the first test. We will use this number to make sure that data
41 set MAGIC_SUM {593f1efcfdbe698c28b4b1b693f7e4cf}
47 INSERT INTO t1 VALUES('abcdefghijklmnopqrstuvwxyz');
48 INSERT INTO t1 SELECT rowid || ' ' || x FROM t1;
49 INSERT INTO t1 SELECT rowid || ' ' || x FROM t1;
50 INSERT INTO t1 SELECT rowid || ' ' || x FROM t1;
51 INSERT INTO t1 SELECT rowid || ' ' || x FROM t1;
52 INSERT INTO t1 SELECT rowid || ' ' || x FROM t1;
53 INSERT INTO t1 SELECT rowid || ' ' || x FROM t1;
54 INSERT INTO t1 SELECT rowid || ' ' || x FROM t1;
58 SELECT md5sum(x) FROM t1;
62 # Try to create a large file - a file that is larger than 2^32 bytes.
63 # If this fails, it means that the system being tested does not support
64 # large files. So skip all of the remaining tests in this file.
67 if {[catch {fake_big_file 4096 test.db} msg]} {
68 puts "**** Unable to create a file larger than 4096 MB. *****"
77 SELECT md5sum(x) FROM t1;
81 # The previous test may fail on some systems because they are unable
82 # to handle large files. If that is so, then skip all of the following
83 # tests. We will know the above test failed because the "db" command
86 if {[llength [info command db]]>0} {
90 CREATE TABLE t2 AS SELECT * FROM t1;
91 SELECT md5sum(x) FROM t2;
98 SELECT md5sum(x) FROM t1;
101 do_test bigfile-1.5 {
103 SELECT md5sum(x) FROM t2;
108 if {[catch {fake_big_file 8192 test.db}]} {
109 puts "**** Unable to create a file larger than 8192 MB. *****"
114 do_test bigfile-1.6 {
117 SELECT md5sum(x) FROM t1;
120 do_test bigfile-1.7 {
122 CREATE TABLE t3 AS SELECT * FROM t1;
123 SELECT md5sum(x) FROM t3;
126 do_test bigfile-1.8 {
130 SELECT md5sum(x) FROM t1;
133 do_test bigfile-1.9 {
135 SELECT md5sum(x) FROM t2;
138 do_test bigfile-1.10 {
140 SELECT md5sum(x) FROM t3;
145 if {[catch {fake_big_file 16384 test.db}]} {
146 puts "**** Unable to create a file larger than 16384 MB. *****"
151 do_test bigfile-1.11 {
154 SELECT md5sum(x) FROM t1;
157 do_test bigfile-1.12 {
159 CREATE TABLE t4 AS SELECT * FROM t1;
160 SELECT md5sum(x) FROM t4;
163 do_test bigfile-1.13 {
167 SELECT md5sum(x) FROM t1;
170 do_test bigfile-1.14 {
172 SELECT md5sum(x) FROM t2;
175 do_test bigfile-1.15 {
177 SELECT md5sum(x) FROM t3;
180 do_test bigfile-1.16 {
182 SELECT md5sum(x) FROM t3;
185 do_test bigfile-1.17 {
187 SELECT md5sum(x) FROM t4;
191 } ;# End of the "if( db command exists )"