Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add another test case to vacuum3.test. (CVS 5168) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d895e85e2f9b595e58562d57226404f7 |
User & Date: | danielk1977 2008-05-28 16:00:44.000 |
Context
2008-05-28
| ||
17:31 | Update makefile.in so that makefiles generated by configure correctly copy in rtree source files to tsrc. (CVS 5169) (check-in: e015fa4458 user: shane tags: trunk) | |
16:00 | Add another test case to vacuum3.test. (CVS 5168) (check-in: d895e85e2f user: danielk1977 tags: trunk) | |
14:08 | Add a test to vacuum3.test to try to trick sqlite into using the wrong database page-size. Turns out there was no problem. (CVS 5167) (check-in: 281589a22f user: danielk1977 tags: trunk) | |
Changes
Changes to test/vacuum3.test.
︙ | ︙ | |||
8 9 10 11 12 13 14 | # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is changing the database page size using a # VACUUM statement. # | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this file is changing the database page size using a # VACUUM statement. # # $Id: vacuum3.test,v 1.4 2008/05/28 16:00:44 danielk1977 Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl # If the VACUUM statement is disabled in the current build, skip all # the tests in this file. # |
︙ | ︙ | |||
205 206 207 208 209 210 211 | PRAGMA page_size=1024; CREATE TABLE abc(a, b, c); INSERT INTO abc VALUES(1, 2, 3); INSERT INTO abc VALUES(4, 5, 6); } execsql { SELECT * FROM abc } } {1 2 3 4 5 6} | < < < < > > > | > > > > > > > > | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | PRAGMA page_size=1024; CREATE TABLE abc(a, b, c); INSERT INTO abc VALUES(1, 2, 3); INSERT INTO abc VALUES(4, 5, 6); } execsql { SELECT * FROM abc } } {1 2 3 4 5 6} do_test vacuum3-4.2 { sqlite3 db2 test.db execsql { SELECT * FROM abc } db2 } {1 2 3 4 5 6} do_test vacuum3-4.3 { execsql { PRAGMA page_size = 2048; VACUUM; } execsql { SELECT * FROM abc } } {1 2 3 4 5 6} do_test vacuum3-4.4 { execsql { SELECT * FROM abc } db2 } {1 2 3 4 5 6} do_test vacuum3-4.5 { execsql { PRAGMA page_size=16384; VACUUM; } db2 execsql { SELECT * FROM abc } db2 } {1 2 3 4 5 6} do_test vacuum3-4.6 { execsql { PRAGMA page_size=1024; VACUUM; } execsql { SELECT * FROM abc } db2 } {1 2 3 4 5 6} do_ioerr_test vacuum3-ioerr-1 -cksum true -sqlprep { PRAGMA page_size = 1024; BEGIN; CREATE TABLE t1(a, b, c); INSERT INTO t1 VALUES(1, randstr(50,50), randstr(50,50)); |
︙ | ︙ |