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.
13 # This file implements tests for the PRAGMA command.
15 # $Id: pragma.test,v 1.66 2008/09/02 00:52:52 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
22 # pragma-1.*: Test cache_size, default_cache_size and synchronous on main db.
23 # pragma-2.*: Test synchronous on attached db.
24 # pragma-3.*: Test detection of table/index inconsistency by integrity_check.
25 # pragma-4.*: Test cache_size and default_cache_size on attached db.
26 # pragma-5.*: Test that pragma synchronous may not be used inside of a
28 # pragma-6.*: Test schema-query pragmas.
29 # pragma-7.*: Miscellaneous tests.
30 # pragma-8.*: Test user_version and schema_version pragmas.
31 # pragma-9.*: Test temp_store and temp_store_directory.
32 # pragma-10.*: Test the count_changes pragma in the presence of triggers.
33 # pragma-11.*: Test the collation_list pragma.
34 # pragma-14.*: Test the page_count pragma.
35 # pragma-15.*: Test that the value set using the cache_size pragma is not
36 # reset when the schema is reloaded.
44 # Delete the preexisting database to avoid the special setup
45 # that the "all.test" script does.
48 file delete test.db test.db-journal
49 file delete test3.db test3.db-journal
50 sqlite3 db test.db; set DB [sqlite3_connection_pointer db]
53 ifcapable pager_pragmas {
54 set DFLT_CACHE_SZ [db one {PRAGMA default_cache_size}]
55 set TEMP_CACHE_SZ [db one {PRAGMA temp.default_cache_size}]
59 PRAGMA default_cache_size;
62 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 2]
65 PRAGMA synchronous=OFF;
66 PRAGMA cache_size=1234;
68 PRAGMA default_cache_size;
71 } [list 1234 $DFLT_CACHE_SZ 0]
77 PRAGMA default_cache_size;
80 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 2]
83 PRAGMA synchronous=OFF;
85 PRAGMA default_cache_size;
88 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 0]
91 PRAGMA cache_size=4321;
93 PRAGMA default_cache_size;
96 } [list 4321 $DFLT_CACHE_SZ 0]
99 PRAGMA synchronous=ON;
101 PRAGMA default_cache_size;
104 } [list 4321 $DFLT_CACHE_SZ 1]
110 PRAGMA default_cache_size;
113 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 2]
116 PRAGMA default_cache_size=123;
118 PRAGMA default_cache_size;
122 do_test pragma-1.9.1 {
124 sqlite3 db test.db; set ::DB [sqlite3_connection_pointer db]
127 PRAGMA default_cache_size;
132 do_test pragma-1.9.2 {
136 PRAGMA default_cache_size;
141 do_test pragma-1.10 {
143 PRAGMA synchronous=NORMAL;
145 PRAGMA default_cache_size;
149 do_test pragma-1.11 {
151 PRAGMA synchronous=FULL;
153 PRAGMA default_cache_size;
157 do_test pragma-1.12 {
159 sqlite3 db test.db; set ::DB [sqlite3_connection_pointer db]
162 PRAGMA default_cache_size;
167 # Make sure the pragma handler understands numeric values in addition
168 # to keywords like "off" and "full".
170 do_test pragma-1.13 {
172 PRAGMA synchronous=0;
176 do_test pragma-1.14 {
178 PRAGMA synchronous=2;
182 } ;# ifcapable pager_pragmas
184 # Test turning "flag" pragmas on and off.
187 # Pragma "vdbe_listing" is only available if compiled with SQLITE_DEBUG
189 do_test pragma-1.15 {
191 PRAGMA vdbe_listing=YES;
195 do_test pragma-1.16 {
197 PRAGMA vdbe_listing=NO;
203 do_test pragma-1.17 {
205 PRAGMA parser_trace=ON;
206 PRAGMA parser_trace=OFF;
209 do_test pragma-1.18 {
211 PRAGMA bogus = -1234; -- Parsing of negative values
215 # Test modifying the safety_level of an attached database.
216 ifcapable pager_pragmas&&attach {
218 file delete -force test2.db
219 file delete -force test2.db-journal
221 ATTACH 'test2.db' AS aux;
226 pragma aux.synchronous;
231 pragma aux.synchronous = OFF;
232 pragma aux.synchronous;
238 pragma aux.synchronous = ON;
240 pragma aux.synchronous;
243 } ;# ifcapable pager_pragmas
245 # Construct a corrupted index and make sure the integrity_check
248 # These tests won't work if the database is encrypted
252 file delete -force test.db test.db-journal
255 PRAGMA auto_vacuum=OFF;
257 CREATE TABLE t2(a,b,c);
258 CREATE INDEX i2 ON t2(a);
259 INSERT INTO t2 VALUES(11,2,3);
260 INSERT INTO t2 VALUES(22,3,4);
262 SELECT rowid, * from t2;
264 } {1 11 2 3 2 22 3 4}
266 if {![sqlite3 -has-codec] && $sqlite_options(integrityck)} {
268 db eval {SELECT rootpage FROM sqlite_master WHERE name='i2'} break
269 set pgsz [db eval {PRAGMA page_size}]
270 # overwrite the header on the rootpage of the index in order to
271 # make the index appear to be empty.
273 set offset [expr {$pgsz*($rootpage-1)}]
274 hexio_write test.db $offset 0a00000000040000000000
277 execsql {PRAGMA integrity_check}
278 } {{rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2}}
280 execsql {PRAGMA integrity_check=1}
281 } {{rowid 1 missing from index i2}}
284 ATTACH DATABASE 'test.db' AS t2;
285 PRAGMA integrity_check
287 } {{rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2}}
290 PRAGMA integrity_check=4
292 } {{rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2} {rowid 1 missing from index i2}}
295 PRAGMA integrity_check=xyz
297 } {{rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2}}
300 PRAGMA integrity_check=0
302 } {{rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2}}
304 # Add additional corruption by appending unused pages to the end of
305 # the database file testerr.db
309 file delete -force testerr.db testerr.db-journal
310 set out [open testerr.db w]
311 fconfigure $out -translation binary
312 set in [open test.db r]
313 fconfigure $in -translation binary
314 puts -nonewline $out [read $in]
316 puts -nonewline $out [read $in]
320 execsql {PRAGMA integrity_check}
322 do_test pragma-3.8.1 {
323 execsql {PRAGMA quick_check}
327 ATTACH 'testerr.db' AS t2;
328 PRAGMA integrity_check
330 } {{*** in database t2 ***
333 Page 6 is never used} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2}}
334 do_test pragma-3.10 {
336 PRAGMA integrity_check=1
338 } {{*** in database t2 ***
339 Page 4 is never used}}
340 do_test pragma-3.11 {
342 PRAGMA integrity_check=5
344 } {{*** in database t2 ***
347 Page 6 is never used} {rowid 1 missing from index i2} {rowid 2 missing from index i2}}
348 do_test pragma-3.12 {
350 PRAGMA integrity_check=4
352 } {{*** in database t2 ***
355 Page 6 is never used} {rowid 1 missing from index i2}}
356 do_test pragma-3.13 {
358 PRAGMA integrity_check=3
360 } {{*** in database t2 ***
363 Page 6 is never used}}
364 do_test pragma-3.14 {
366 PRAGMA integrity_check(2)
368 } {{*** in database t2 ***
370 Page 5 is never used}}
371 do_test pragma-3.15 {
373 ATTACH 'testerr.db' AS t3;
374 PRAGMA integrity_check
376 } {{*** in database t2 ***
379 Page 6 is never used} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2} {*** in database t3 ***
382 Page 6 is never used} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2}}
383 do_test pragma-3.16 {
385 PRAGMA integrity_check(10)
387 } {{*** in database t2 ***
390 Page 6 is never used} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2} {*** in database t3 ***
393 Page 6 is never used} {rowid 1 missing from index i2}}
394 do_test pragma-3.17 {
396 PRAGMA integrity_check=8
398 } {{*** in database t2 ***
401 Page 6 is never used} {rowid 1 missing from index i2} {rowid 2 missing from index i2} {wrong # of entries in index i2} {*** in database t3 ***
403 Page 5 is never used}}
404 do_test pragma-3.18 {
406 PRAGMA integrity_check=4
408 } {{*** in database t2 ***
411 Page 6 is never used} {rowid 1 missing from index i2}}
413 do_test pragma-3.99 {
416 file delete -force testerr.db testerr.db-journal
417 catchsql {DROP INDEX i2}
421 # Test modifying the cache_size of an attached database.
422 ifcapable pager_pragmas&&attach {
425 ATTACH 'test2.db' AS aux;
426 pragma aux.cache_size;
427 pragma aux.default_cache_size;
429 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ]
432 pragma aux.cache_size = 50;
433 pragma aux.cache_size;
434 pragma aux.default_cache_size;
436 } [list 50 $DFLT_CACHE_SZ]
439 pragma aux.default_cache_size = 456;
440 pragma aux.cache_size;
441 pragma aux.default_cache_size;
447 pragma default_cache_size;
449 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ]
453 ATTACH 'test3.db' AS aux;
454 pragma aux.cache_size;
455 pragma aux.default_cache_size;
457 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ]
461 ATTACH 'test2.db' AS aux;
462 pragma aux.cache_size;
463 pragma aux.default_cache_size;
466 } ;# ifcapable pager_pragmas
468 # Test that modifying the sync-level in the middle of a transaction is
470 ifcapable pager_pragmas {
479 pragma synchronous = OFF;
481 } {1 {Safety level may not be changed inside a transaction}}
488 } ;# ifcapable pager_pragmas
490 # Test schema-query pragmas
492 ifcapable schema_pragmas {
493 ifcapable tempdb&&attach {
496 execsql {SELECT * FROM sqlite_temp_master}
497 foreach {idx name file} [execsql {pragma database_list}] {
498 lappend res $idx $name
501 } {0 main 1 temp 2 aux}
505 pragma table_info(t2)
507 } {0 a {} 0 {} 0 1 b {} 0 {} 0 2 c {} 0 {} 0}
508 db nullvalue <<NULL>>
509 do_test pragma-6.2.2 {
512 a TEXT DEFAULT CURRENT_TIMESTAMP,
515 d INTEGER DEFAULT NULL,
518 PRAGMA table_info(t5);
520 } {0 a TEXT 0 CURRENT_TIMESTAMP 0 1 b {} 0 5+3 0 2 c TEXT 0 <<NULL>> 0 3 d INTEGER 0 NULL 0 4 e TEXT 0 '' 0}
522 ifcapable {foreignkey} {
525 CREATE TABLE t3(a int references t2(b), b UNIQUE);
526 pragma foreign_key_list(t3);
531 pragma index_list(t3);
533 } {0 sqlite_autoindex_t3_1 1}
535 ifcapable {!foreignkey} {
536 execsql {CREATE TABLE t3(a,b UNIQUE)}
540 CREATE INDEX t3i1 ON t3(a,b);
541 pragma index_info(t3i1);
546 # Test for ticket #3320. When a temp table of the same name exists, make
547 # sure the schema of the main table can still be queried using
548 # "pragma table_info":
549 do_test pragma-6.6.1 {
551 CREATE TABLE trial(col_main);
552 CREATE TEMP TABLE trial(col_temp);
555 do_test pragma-6.6.2 {
557 PRAGMA table_info(trial);
559 } {0 col_temp {} 0 {} 0}
560 do_test pragma-6.6.3 {
562 PRAGMA temp.table_info(trial);
564 } {0 col_temp {} 0 {} 0}
565 do_test pragma-6.6.4 {
567 PRAGMA main.table_info(trial);
569 } {0 col_main {} 0 {} 0}
571 } ;# ifcapable schema_pragmas
572 # Miscellaneous tests
574 ifcapable schema_pragmas {
576 # Make sure a pragma knows to read the schema if it needs to
580 pragma index_list(t3);
582 } {0 t3i1 0 1 sqlite_autoindex_t3_1 1}
583 } ;# ifcapable schema_pragmas
589 pragma encoding=bogus;
591 } {1 {unsupported encoding: bogus}}
600 } {main unlocked temp closed}
612 #----------------------------------------------------------------------
613 # Test cases pragma-8.* test the "PRAGMA schema_version" and "PRAGMA
614 # user_version" statements.
616 # pragma-8.1: PRAGMA schema_version
617 # pragma-8.2: PRAGMA user_version
620 ifcapable schema_version {
622 # First check that we can set the schema version and then retrieve the
624 do_test pragma-8.1.1 {
626 PRAGMA schema_version = 105;
629 do_test pragma-8.1.2 {
631 PRAGMA schema_version;
633 } {schema_version 105}
634 do_test pragma-8.1.3 {
636 PRAGMA schema_version = 106;
639 do_test pragma-8.1.4 {
641 PRAGMA schema_version;
645 # Check that creating a table modifies the schema-version (this is really
646 # to verify that the value being read is in fact the schema version).
647 do_test pragma-8.1.5 {
649 CREATE TABLE t4(a, b, c);
650 INSERT INTO t4 VALUES(1, 2, 3);
654 do_test pragma-8.1.6 {
656 PRAGMA schema_version;
660 # Now open a second connection to the database. Ensure that changing the
661 # schema-version using the first connection forces the second connection
662 # to reload the schema. This has to be done using the C-API test functions,
663 # because the TCL API accounts for SCHEMA_ERROR and retries the query.
664 do_test pragma-8.1.7 {
665 sqlite3 db2 test.db; set ::DB2 [sqlite3_connection_pointer db2]
670 do_test pragma-8.1.8 {
672 PRAGMA schema_version = 108;
675 do_test pragma-8.1.9 {
676 set ::STMT [sqlite3_prepare $::DB2 "SELECT * FROM t4" -1 DUMMY]
679 do_test pragma-8.1.10 {
680 sqlite3_finalize $::STMT
683 # Make sure the schema-version can be manipulated in an attached database.
684 file delete -force test2.db
685 file delete -force test2.db-journal
687 do_test pragma-8.1.11 {
689 ATTACH 'test2.db' AS aux;
690 CREATE TABLE aux.t1(a, b, c);
691 PRAGMA aux.schema_version = 205;
694 do_test pragma-8.1.12 {
696 PRAGMA aux.schema_version;
700 do_test pragma-8.1.13 {
702 PRAGMA schema_version;
706 # And check that modifying the schema-version in an attached database
707 # forces the second connection to reload the schema.
709 do_test pragma-8.1.14 {
710 sqlite3 db2 test.db; set ::DB2 [sqlite3_connection_pointer db2]
712 ATTACH 'test2.db' AS aux;
713 SELECT * FROM aux.t1;
716 do_test pragma-8.1.15 {
718 PRAGMA aux.schema_version = 206;
721 do_test pragma-8.1.16 {
722 set ::STMT [sqlite3_prepare $::DB2 "SELECT * FROM aux.t1" -1 DUMMY]
725 do_test pragma-8.1.17 {
726 sqlite3_finalize $::STMT
728 do_test pragma-8.1.18 {
733 # Now test that the user-version can be read and written (and that we aren't
734 # accidentally manipulating the schema-version instead).
735 do_test pragma-8.2.1 {
740 do_test pragma-8.2.2 {
742 PRAGMA user_version = 2;
745 do_test pragma-8.2.3.1 {
750 do_test pragma-8.2.3.2 {
757 do_test pragma-8.2.4.1 {
759 PRAGMA schema_version;
763 do_test pragma-8.2.4.2 {
769 do_test pragma-8.2.4.3 {
771 PRAGMA schema_version;
777 db eval {ATTACH 'test2.db' AS aux}
779 # Check that the user-version in the auxilary database can be manipulated (
780 # and that we aren't accidentally manipulating the same in the main db).
781 do_test pragma-8.2.5 {
783 PRAGMA aux.user_version;
786 do_test pragma-8.2.6 {
788 PRAGMA aux.user_version = 3;
791 do_test pragma-8.2.7 {
793 PRAGMA aux.user_version;
796 do_test pragma-8.2.8 {
798 PRAGMA main.user_version;
802 # Now check that a ROLLBACK resets the user-version if it has been modified
803 # within a transaction.
804 do_test pragma-8.2.9 {
807 PRAGMA aux.user_version = 10;
808 PRAGMA user_version = 11;
811 do_test pragma-8.2.10 {
813 PRAGMA aux.user_version;
816 do_test pragma-8.2.11 {
818 PRAGMA main.user_version;
821 do_test pragma-8.2.12 {
824 PRAGMA aux.user_version;
827 do_test pragma-8.2.13 {
829 PRAGMA main.user_version;
834 # Try a negative value for the user-version
835 do_test pragma-8.2.14 {
837 PRAGMA user_version = -450;
840 do_test pragma-8.2.15 {
845 } ; # ifcapable schema_version
847 # Check to see if TEMP_STORE is memory or disk. Return strings
848 # "memory" or "disk" as appropriate.
850 proc check_temp_store {} {
851 db eval {CREATE TEMP TABLE IF NOT EXISTS a(b)}
852 db eval {PRAGMA database_list} {
854 set bt [btree_from_db db 1]
855 if {[btree_ismemdb $bt]} {
865 # Test temp_store and temp_store_directory pragmas
867 ifcapable pager_pragmas {
875 if {$TEMP_STORE<=1} {
876 do_test pragma-9.1.1 {
880 do_test pragma-9.1.1 {
889 PRAGMA temp_store=file;
893 if {$TEMP_STORE==3} {
894 # When TEMP_STORE is 3, always use memory regardless of pragma settings.
895 do_test pragma-9.2.1 {
899 do_test pragma-9.2.1 {
908 PRAGMA temp_store=memory;
912 if {$TEMP_STORE==0} {
913 # When TEMP_STORE is 0, always use the disk regardless of pragma settings.
914 do_test pragma-9.3.1 {
918 do_test pragma-9.3.1 {
925 PRAGMA temp_store_directory;
930 set pwd [string map {' ''} [file nativename [pwd]]]
932 PRAGMA temp_store_directory='$pwd';
937 PRAGMA temp_store_directory;
939 } [list [file nativename [pwd]]]
942 PRAGMA temp_store_directory='/NON/EXISTENT/PATH/FOOBAR';
944 } {1 {not a writable directory}}
947 PRAGMA temp_store_directory='';
950 if {![info exists TEMP_STORE] || $TEMP_STORE<=1} {
954 PRAGMA temp_store_directory;
955 PRAGMA temp_store=FILE;
956 CREATE TEMP TABLE temp_store_directory_test(a integer);
957 INSERT INTO temp_store_directory_test values (2);
958 SELECT * FROM temp_store_directory_test;
961 do_test pragma-9.10 {
963 PRAGMA temp_store_directory='$pwd';
964 SELECT * FROM temp_store_directory_test;
966 } {1 {no such table: temp_store_directory_test}}
970 do_test pragma-9.11 {
972 PRAGMA temp_store = 0;
976 do_test pragma-9.12 {
978 PRAGMA temp_store = 1;
982 do_test pragma-9.13 {
984 PRAGMA temp_store = 2;
988 do_test pragma-9.14 {
990 PRAGMA temp_store = 3;
994 do_test pragma-9.15 {
997 CREATE TEMP TABLE temp_table(t);
998 INSERT INTO temp_table VALUES('valuable data');
999 PRAGMA temp_store = 1;
1001 } {1 {temporary storage cannot be changed from within a transaction}}
1002 do_test pragma-9.16 {
1004 SELECT * FROM temp_table;
1009 do_test pragma-9.17 {
1011 INSERT INTO temp_table VALUES('valuable data II');
1012 SELECT * FROM temp_table;
1014 } {{valuable data} {valuable data II}}
1016 do_test pragma-9.18 {
1018 db eval {SELECT t FROM temp_table} {
1019 execsql {pragma temp_store = 1}
1023 } {1 {temporary storage cannot be changed from within a transaction}}
1025 } ;# ifcapable pager_pragmas
1029 do_test pragma-10.0 {
1034 PRAGMA count_changes = 1;
1036 CREATE TABLE t1(a PRIMARY KEY);
1037 CREATE TABLE t1_mirror(a);
1038 CREATE TABLE t1_mirror2(a);
1039 CREATE TRIGGER t1_bi BEFORE INSERT ON t1 BEGIN
1040 INSERT INTO t1_mirror VALUES(new.a);
1042 CREATE TRIGGER t1_ai AFTER INSERT ON t1 BEGIN
1043 INSERT INTO t1_mirror2 VALUES(new.a);
1045 CREATE TRIGGER t1_bu BEFORE UPDATE ON t1 BEGIN
1046 UPDATE t1_mirror SET a = new.a WHERE a = old.a;
1048 CREATE TRIGGER t1_au AFTER UPDATE ON t1 BEGIN
1049 UPDATE t1_mirror2 SET a = new.a WHERE a = old.a;
1051 CREATE TRIGGER t1_bd BEFORE DELETE ON t1 BEGIN
1052 DELETE FROM t1_mirror WHERE a = old.a;
1054 CREATE TRIGGER t1_ad AFTER DELETE ON t1 BEGIN
1055 DELETE FROM t1_mirror2 WHERE a = old.a;
1060 do_test pragma-10.1 {
1062 INSERT INTO t1 VALUES(randstr(10,10));
1065 do_test pragma-10.2 {
1067 UPDATE t1 SET a = randstr(10,10);
1070 do_test pragma-10.3 {
1076 } ;# ifcapable trigger
1078 ifcapable schema_pragmas {
1079 do_test pragma-11.1 {
1081 pragma collation_list;
1083 } {seq 0 name NOCASE seq 1 name RTRIM seq 2 name BINARY}
1084 do_test pragma-11.2 {
1085 db collate New_Collation blah...
1087 pragma collation_list;
1089 } {0 New_Collation 1 NOCASE 2 RTRIM 3 BINARY}
1092 ifcapable schema_pragmas&&tempdb {
1093 do_test pragma-12.1 {
1096 PRAGMA temp.table_info('abc');
1101 do_test pragma-12.2 {
1104 PRAGMA temp.default_cache_size = 200;
1105 PRAGMA temp.default_cache_size;
1110 do_test pragma-12.3 {
1113 PRAGMA temp.cache_size = 400;
1114 PRAGMA temp.cache_size;
1122 do_test pragma-13.1 {
1124 DROP TABLE IF EXISTS t4;
1125 PRAGMA vdbe_trace=on;
1126 PRAGMA vdbe_listing=on;
1127 PRAGMA sql_trace=on;
1128 CREATE TABLE t4(a INTEGER PRIMARY KEY,b);
1129 INSERT INTO t4(b) VALUES(x'0123456789abcdef0123456789abcdef0123456789');
1130 INSERT INTO t4(b) VALUES(randstr(30,30));
1131 INSERT INTO t4(b) VALUES(1.23456);
1132 INSERT INTO t4(b) VALUES(NULL);
1133 INSERT INTO t4(b) VALUES(0);
1134 INSERT INTO t4(b) SELECT b||b||b||b FROM t4;
1138 PRAGMA vdbe_trace=off;
1139 PRAGMA vdbe_listing=off;
1140 PRAGMA sql_trace=off;
1144 } ;# ifcapable bloblit
1146 ifcapable pager_pragmas {
1148 file delete -force test.db
1151 do_test pragma-14.1 {
1152 execsql { pragma auto_vacuum = 0 }
1153 execsql { pragma page_count }
1156 do_test pragma-14.2 {
1158 CREATE TABLE abc(a, b, c);
1163 do_test pragma-14.3 {
1166 CREATE TABLE def(a, b, c);
1171 do_test pragma-14.4 {
1172 set page_size [db one {pragma page_size}]
1173 expr [file size test.db] / $page_size
1176 do_test pragma-14.5 {
1183 do_test pragma-14.6 {
1184 file delete -force test2.db
1185 sqlite3 db2 test2.db
1187 PRAGMA auto_vacuum = 0;
1188 CREATE TABLE t1(a, b, c);
1189 CREATE TABLE t2(a, b, c);
1190 CREATE TABLE t3(a, b, c);
1191 CREATE TABLE t4(a, b, c);
1195 ATTACH 'test2.db' AS aux;
1196 PRAGMA aux.page_count;
1201 # Test that the value set using the cache_size pragma is not reset when the
1202 # schema is reloaded.
1204 ifcapable pager_pragmas {
1207 do_test pragma-15.1 {
1209 PRAGMA cache_size=59;
1213 do_test pragma-15.2 {
1216 CREATE TABLE newtable(a, b, c);
1220 do_test pragma-15.3 {
1221 # Evaluating this statement will cause the schema to be reloaded (because
1222 # the schema was changed by another connection in pragma-15.2). At one
1223 # point there was a bug that reset the cache_size to its default value
1224 # when this happened.
1225 execsql { SELECT * FROM sqlite_master }
1226 execsql { PRAGMA cache_size }
1230 # Reset the sqlite3_temp_directory variable for the next run of tests:
1231 sqlite3 dbX :memory:
1232 dbX eval {PRAGMA temp_store_directory = ""}