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.73 2009/01/12 14:01:45 danielk1977 Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
21 # Do not use a codec for tests in this file, as the database file is
22 # manipulated directly using tcl scripts (using the [hexio_write] command).
28 # pragma-1.*: Test cache_size, default_cache_size and synchronous on main db.
29 # pragma-2.*: Test synchronous on attached db.
30 # pragma-3.*: Test detection of table/index inconsistency by integrity_check.
31 # pragma-4.*: Test cache_size and default_cache_size on attached db.
32 # pragma-5.*: Test that pragma synchronous may not be used inside of a
34 # pragma-6.*: Test schema-query pragmas.
35 # pragma-7.*: Miscellaneous tests.
36 # pragma-8.*: Test user_version and schema_version pragmas.
37 # pragma-9.*: Test temp_store and temp_store_directory.
38 # pragma-10.*: Test the count_changes pragma in the presence of triggers.
39 # pragma-11.*: Test the collation_list pragma.
40 # pragma-14.*: Test the page_count pragma.
41 # pragma-15.*: Test that the value set using the cache_size pragma is not
42 # reset when the schema is reloaded.
43 # pragma-16.*: Test proxy locking
44 # pragma-20.*: Test data_store_directory.
45 # pragma-22.*: Test that "PRAGMA [db].integrity_check" respects the "db"
46 # directive - if it is present.
54 # Capture the output of a pragma in a TEMP table.
56 proc capture_pragma {db tabname sql} {
57 $db eval "DROP TABLE IF EXISTS temp.$tabname"
62 set ins "INSERT INTO $tabname VALUES"
63 set crtab "CREATE TEMP TABLE $tabname "
66 append ins ${sep}\$x($col)
67 append crtab ${sep}\"$col\"
78 # Delete the preexisting database to avoid the special setup
79 # that the "all.test" script does.
82 delete_file test.db test.db-journal
83 delete_file test3.db test3.db-journal
84 sqlite3 db test.db; set DB [sqlite3_connection_pointer db]
86 # EVIDENCE-OF: R-13861-56665 PRAGMA schema.cache_size; PRAGMA
87 # schema.cache_size = pages; PRAGMA schema.cache_size = -kibibytes;
88 # Query or change the suggested maximum number of database disk pages
89 # that SQLite will hold in memory at once per open database file.
91 ifcapable pager_pragmas {
92 set DFLT_CACHE_SZ [db one {PRAGMA default_cache_size}]
93 set TEMP_CACHE_SZ [db one {PRAGMA temp.default_cache_size}]
97 PRAGMA default_cache_size;
100 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 2]
102 # EVIDENCE-OF: R-42059-47211 If the argument N is positive then the
103 # suggested cache size is set to N.
105 PRAGMA synchronous=OFF;
106 PRAGMA cache_size=1234;
108 PRAGMA default_cache_size;
111 } [list 1234 $DFLT_CACHE_SZ 0]
117 PRAGMA default_cache_size;
120 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 2]
123 PRAGMA synchronous=OFF;
125 PRAGMA default_cache_size;
128 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 0]
131 PRAGMA cache_size=-4321;
133 PRAGMA default_cache_size;
136 } [list -4321 $DFLT_CACHE_SZ 0]
139 PRAGMA synchronous=ON;
141 PRAGMA default_cache_size;
144 } [list -4321 $DFLT_CACHE_SZ 1]
150 PRAGMA default_cache_size;
153 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ 2]
156 PRAGMA default_cache_size=-123;
158 PRAGMA default_cache_size;
162 do_test pragma-1.9.1 {
164 sqlite3 db test.db; set ::DB [sqlite3_connection_pointer db]
167 PRAGMA default_cache_size;
172 do_test pragma-1.9.2 {
176 PRAGMA default_cache_size;
181 do_test pragma-1.10 {
183 PRAGMA synchronous=NORMAL;
185 PRAGMA default_cache_size;
189 do_test pragma-1.11.1 {
191 PRAGMA synchronous=EXTRA;
193 PRAGMA default_cache_size;
197 do_test pragma-1.11.2 {
199 PRAGMA synchronous=FULL;
201 PRAGMA default_cache_size;
205 do_test pragma-1.12 {
207 sqlite3 db test.db; set ::DB [sqlite3_connection_pointer db]
210 PRAGMA default_cache_size;
215 # Make sure the pragma handler understands numeric values in addition
216 # to keywords like "off" and "full".
218 do_test pragma-1.13 {
220 PRAGMA synchronous=0;
224 do_test pragma-1.14 {
226 PRAGMA synchronous=2;
230 do_test pragma-1.14.1 {
232 PRAGMA synchronous=4;
236 do_test pragma-1.14.2 {
238 PRAGMA synchronous=3;
242 do_test pragma-1.14.3 {
244 PRAGMA synchronous=8;
248 do_test pragma-1.14.4 {
250 PRAGMA synchronous=10;
255 do_execsql_test 1.15.1 {
256 PRAGMA default_cache_size = 0;
258 do_execsql_test 1.15.2 {
259 PRAGMA default_cache_size;
261 do_execsql_test 1.15.3 {
262 PRAGMA default_cache_size = -500;
264 do_execsql_test 1.15.4 {
265 PRAGMA default_cache_size;
267 do_execsql_test 1.15.3 {
268 PRAGMA default_cache_size = 500;
270 do_execsql_test 1.15.4 {
271 PRAGMA default_cache_size;
274 hexio_write test.db 48 FFFFFF00
276 do_execsql_test 1.15.4 {
277 PRAGMA default_cache_size;
279 } ;# ifcapable pager_pragmas
281 # Test turning "flag" pragmas on and off.
284 # Pragma "vdbe_listing" is only available if compiled with SQLITE_DEBUG
286 do_test pragma-1.15 {
288 PRAGMA vdbe_listing=YES;
292 do_test pragma-1.16 {
294 PRAGMA vdbe_listing=NO;
300 do_test pragma-1.17 {
302 PRAGMA parser_trace=ON;
303 PRAGMA parser_trace=OFF;
306 do_test pragma-1.18 {
308 PRAGMA bogus = -1234; -- Parsing of negative values
312 # Test modifying the safety_level of an attached database.
313 ifcapable pager_pragmas&&attach {
316 forcedelete test2.db-journal
318 ATTACH 'test2.db' AS aux;
323 pragma aux.synchronous;
328 pragma aux.synchronous = OFF;
329 pragma aux.synchronous;
335 pragma aux.synchronous = ON;
337 pragma aux.synchronous;
340 } ;# ifcapable pager_pragmas
342 # Construct a corrupted index and make sure the integrity_check
345 # These tests won't work if the database is encrypted
349 forcedelete test.db test.db-journal
352 PRAGMA auto_vacuum=OFF;
354 CREATE TABLE t2(a,b,c);
355 CREATE INDEX i2 ON t2(a);
356 INSERT INTO t2 VALUES(11,2,3);
357 INSERT INTO t2 VALUES(22,3,4);
359 SELECT rowid, * from t2;
361 } {1 11 2 3 2 22 3 4}
363 if {![sqlite3 -has-codec] && $sqlite_options(integrityck)} {
365 db eval {SELECT rootpage FROM sqlite_master WHERE name='i2'} break
366 set pgsz [db eval {PRAGMA page_size}]
367 # overwrite the header on the rootpage of the index in order to
368 # make the index appear to be empty.
370 set offset [expr {$pgsz*($rootpage-1)}]
371 hexio_write test.db $offset 0a00000000040000000000
374 execsql {PRAGMA integrity_check}
375 } {{row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2}}
377 execsql {PRAGMA integrity_check=1}
378 } {{row 1 missing from index i2}}
381 ATTACH DATABASE 'test.db' AS t2;
382 PRAGMA integrity_check
384 } {{row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2} {row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2}}
387 PRAGMA integrity_check=4
389 } {{row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2} {row 1 missing from index i2}}
390 do_catchsql_test pragma-3.6 {
391 PRAGMA integrity_check=xyz
392 } {1 {no such table: xyz}}
393 do_catchsql_test pragma-3.6b {
394 PRAGMA integrity_check=t2
395 } {0 {{row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2}}}
396 do_catchsql_test pragma-3.6c {
397 PRAGMA integrity_check=sqlite_schema
401 PRAGMA integrity_check=0
403 } {{row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2} {row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2}}
405 # Add additional corruption by appending unused pages to the end of
406 # the database file testerr.db
410 forcedelete testerr.db testerr.db-journal
411 set out [open testerr.db w]
412 fconfigure $out -translation binary
413 set in [open test.db r]
414 fconfigure $in -translation binary
415 puts -nonewline $out [read $in]
417 puts -nonewline $out [read $in]
420 hexio_write testerr.db 28 00000000
422 execsql {PRAGMA integrity_check}
424 do_test pragma-3.8.1 {
425 execsql {PRAGMA quick_check}
427 do_test pragma-3.8.2 {
428 execsql {PRAGMA QUICK_CHECK}
430 do_test pragma-3.9a {
432 ATTACH 'testerr.db' AS t2;
433 PRAGMA integrity_check
435 } {{*** in database t2 ***
438 Page 6: never used} {row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2}}
439 do_execsql_test pragma-3.9b {
440 PRAGMA t2.integrity_check=t2;
441 } {{row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2}}
442 do_execsql_test pragma-3.9c {
443 PRAGMA t2.integrity_check=sqlite_schema;
445 do_test pragma-3.10 {
447 PRAGMA integrity_check=1
449 } {{*** in database t2 ***
451 do_test pragma-3.11 {
453 PRAGMA integrity_check=5
455 } {{*** in database t2 ***
458 Page 6: never used} {row 1 missing from index i2} {row 2 missing from index i2}}
459 do_test pragma-3.12 {
461 PRAGMA integrity_check=4
463 } {{*** in database t2 ***
466 Page 6: never used} {row 1 missing from index i2}}
467 do_test pragma-3.13 {
469 PRAGMA integrity_check=3
471 } {{*** in database t2 ***
475 do_test pragma-3.14 {
477 PRAGMA integrity_check(2)
479 } {{*** in database t2 ***
482 do_test pragma-3.15 {
484 ATTACH 'testerr.db' AS t3;
485 PRAGMA integrity_check
487 } {{*** in database t2 ***
490 Page 6: never used} {row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2} {*** in database t3 ***
493 Page 6: never used} {row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2}}
494 do_test pragma-3.16 {
496 PRAGMA integrity_check(10)
498 } {{*** in database t2 ***
501 Page 6: never used} {row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2} {*** in database t3 ***
504 Page 6: never used} {row 1 missing from index i2}}
505 do_test pragma-3.17 {
507 PRAGMA integrity_check=8
509 } {{*** in database t2 ***
512 Page 6: never used} {row 1 missing from index i2} {row 2 missing from index i2} {wrong # of entries in index i2} {*** in database t3 ***
515 do_test pragma-3.18 {
517 PRAGMA integrity_check=4
519 } {{*** in database t2 ***
522 Page 6: never used} {row 1 missing from index i2}}
524 do_test pragma-3.19 {
526 forcedelete test.db test.db-journal
528 db eval {PRAGMA integrity_check}
532 # Verify that PRAGMA integrity_check catches UNIQUE and NOT NULL
533 # constraint violations.
535 ifcapable altertable {
536 sqlite3_db_config db DEFENSIVE 0
537 do_execsql_test pragma-3.20 {
538 CREATE TABLE t1(a,b);
539 CREATE INDEX t1a ON t1(a);
540 INSERT INTO t1 VALUES(1,1),(2,2),(3,3),(2,4),(NULL,5),(NULL,6);
541 PRAGMA writable_schema=ON;
542 UPDATE sqlite_master SET sql='CREATE UNIQUE INDEX t1a ON t1(a)'
544 UPDATE sqlite_master SET sql='CREATE TABLE t1(a NOT NULL,b)'
546 PRAGMA writable_schema=OFF;
547 ALTER TABLE t1 RENAME TO t1x;
548 PRAGMA integrity_check;
549 } {{non-unique entry in index t1a} {NULL value in t1x.a} {non-unique entry in index t1a} {NULL value in t1x.a}}
550 do_execsql_test pragma-3.21 {
551 PRAGMA integrity_check(3);
552 } {{non-unique entry in index t1a} {NULL value in t1x.a} {non-unique entry in index t1a}}
553 do_execsql_test pragma-3.22 {
554 PRAGMA integrity_check(2);
555 } {{non-unique entry in index t1a} {NULL value in t1x.a}}
556 do_execsql_test pragma-3.23 {
557 PRAGMA integrity_check(1);
558 } {{non-unique entry in index t1a}}
561 # PRAGMA integrity check (or more specifically the sqlite3BtreeCount()
562 # interface) used to leave index cursors in an inconsistent state
563 # which could result in an assertion fault in sqlite3BtreeKey()
564 # called from saveCursorPosition() if content is removed from the
565 # index while the integrity_check is still running. This test verifies
566 # that problem has been fixed.
568 do_test pragma-3.30 {
573 CREATE TABLE t1(a,b,c);
575 c(i) AS (VALUES(1) UNION ALL SELECT i+1 FROM c WHERE i<100)
576 INSERT INTO t1(a,b,c) SELECT i, printf('xyz%08x',i), 2000-i FROM c;
577 CREATE INDEX t1a ON t1(a);
578 CREATE INDEX t1bc ON t1(b,c);
580 db eval {PRAGMA integrity_check} {
581 db eval {DELETE FROM t1}
585 # The values stored in indexes must be byte-for-byte identical to the
586 # values stored in tables.
589 do_execsql_test pragma-3.40 {
591 a INTEGER PRIMARY KEY,
592 b TEXT COLLATE nocase,
593 c INT COLLATE nocase,
596 INSERT INTO t1(a,b,c,d) VALUES
597 (1, 'one','one','one'),
598 (2, 'two','two','two'),
599 (3, 'three','three','three'),
600 (4, 'four','four','four'),
601 (5, 'five','five','five');
602 CREATE INDEX t1bcd ON t1(b,c,d);
604 a INTEGER PRIMARY KEY,
605 b TEXT COLLATE nocase,
606 c INT COLLATE nocase,
609 INSERT INTO t2(a,b,c,d) VALUES
610 (1, 'one','one','one'),
611 (2, 'two','two','TWO'),
612 (3, 'three','THREE','three'),
613 (4, 'FOUR','four','four'),
614 (5, 'FIVE','FIVE','five');
615 CREATE INDEX t2bcd ON t2(b,c,d);
616 CREATE TEMP TABLE saved_schema AS SELECT name, rootpage FROM sqlite_schema;
617 PRAGMA writable_schema=ON;
619 SET rootpage=(SELECT rootpage FROM saved_schema WHERE name='t2bcd')
622 SET rootpage=(SELECT rootpage FROM saved_schema WHERE name='t1bcd')
624 PRAGMA Writable_schema=RESET;
627 do_execsql_test pragma-3.41 {
628 SELECT integrity_check AS x FROM pragma_integrity_check ORDER BY 1;
630 {row 2 missing from index t1bcd}
631 {row 2 missing from index t2bcd}
632 {row 3 values differ from index t1bcd}
633 {row 3 values differ from index t2bcd}
634 {row 4 values differ from index t1bcd}
635 {row 4 values differ from index t2bcd}
636 {row 5 values differ from index t1bcd}
637 {row 5 values differ from index t2bcd}
640 db eval {DROP TABLE t2}
642 # Test modifying the cache_size of an attached database.
643 ifcapable pager_pragmas&&attach {
646 ATTACH 'test2.db' AS aux;
647 pragma aux.cache_size;
648 pragma aux.default_cache_size;
650 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ]
653 pragma aux.cache_size = 50;
654 pragma aux.cache_size;
655 pragma aux.default_cache_size;
657 } [list 50 $DFLT_CACHE_SZ]
660 pragma aux.default_cache_size = 456;
661 pragma aux.cache_size;
662 pragma aux.default_cache_size;
668 pragma default_cache_size;
670 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ]
674 ATTACH 'test3.db' AS aux;
675 pragma aux.cache_size;
676 pragma aux.default_cache_size;
678 } [list $DFLT_CACHE_SZ $DFLT_CACHE_SZ]
682 ATTACH 'test2.db' AS aux;
683 pragma aux.cache_size;
684 pragma aux.default_cache_size;
687 } ;# ifcapable pager_pragmas
689 # Test that modifying the sync-level in the middle of a transaction is
691 ifcapable pager_pragmas {
700 pragma synchronous = OFF;
702 } {1 {Safety level may not be changed inside a transaction}}
709 } ;# ifcapable pager_pragmas
711 # Test schema-query pragmas
713 ifcapable schema_pragmas {
714 ifcapable tempdb&&attach {
717 execsql {SELECT * FROM sqlite_temp_master}
718 foreach {idx name file} [execsql {pragma database_list}] {
719 lappend res $idx $name
722 } {0 main 1 temp 2 aux}
726 CREATE TABLE t2(a TYPE_X, b [TYPE_Y], c "TYPE_Z");
727 pragma table_info(t2)
729 } {0 a TYPE_X 0 {} 0 1 b TYPE_Y 0 {} 0 2 c TYPE_Z 0 {} 0}
730 do_test pragma-6.2.1 {
735 db nullvalue <<NULL>>
736 do_test pragma-6.2.2 {
739 a TEXT DEFAULT CURRENT_TIMESTAMP,
742 d INTEGER DEFAULT NULL,
747 PRAGMA table_info(t5);
749 } {0 a TEXT 0 CURRENT_TIMESTAMP 0 1 b {} 0 5+3 2 2 c TEXT 0 <<NULL>> 3 3 d INTEGER 0 NULL 0 4 e TEXT 0 '' 1}
751 do_test pragma-6.2.3 {
753 CREATE TABLE t2_3(a,b INTEGER PRIMARY KEY,c);
754 pragma table_info(t2_3)
756 } {0 a {} 0 {} 0 1 b INTEGER 0 {} 1 2 c {} 0 {} 0}
757 ifcapable {foreignkey} {
758 do_test pragma-6.3.1 {
760 CREATE TABLE t3(a int references t2(b), b UNIQUE);
761 pragma foreign_key_list(t3);
763 } {0 0 t2 a b {NO ACTION} {NO ACTION} NONE}
764 do_test pragma-6.3.2 {
766 pragma foreign_key_list;
769 do_test pragma-6.3.3 {
771 pragma foreign_key_list(t3_bogus);
774 do_test pragma-6.3.4 {
776 pragma foreign_key_list(t5);
780 capture_pragma db out {
781 pragma index_list(t3);
783 db eval {SELECT seq, "name", "unique" FROM out ORDER BY seq}
784 } {0 sqlite_autoindex_t3_1 1}
786 ifcapable {!foreignkey} {
787 execsql {CREATE TABLE t3(a,b UNIQUE)}
789 do_test pragma-6.5.1 {
791 CREATE INDEX t3i1 ON t3(a,b);
793 capture_pragma db out {
794 pragma index_info(t3i1);
796 db eval {SELECT seqno, cid, name FROM out ORDER BY seqno}
799 # EVIDENCE-OF: R-23114-21695 The auxiliary index-columns are not shown
800 # by the index_info pragma, but they are listed by the index_xinfo
803 do_test pragma-6.5.1b {
804 capture_pragma db out {PRAGMA index_xinfo(t3i1)}
805 db eval {SELECT seqno, cid, name FROM out ORDER BY seqno}
806 } {0 0 a 1 1 b 2 -1 {}}
809 # EVIDENCE-OF: R-29448-60346 PRAGMA schema.index_info(index-name); This
810 # pragma returns one row for each key column in the named index.
812 # (The first column of output from PRAGMA index_info is...)
813 # EVIDENCE-OF: R-34186-52914 The rank of the column within the index. (0
816 # (The second column of output from PRAGMA index_info is...)
817 # EVIDENCE-OF: R-65019-08383 The rank of the column within the table
820 # (The third column of output from PRAGMA index_info is...)
821 # EVIDENCE-OF: R-09773-34266 The name of the column being indexed.
823 do_execsql_test pragma-6.5.1c {
824 CREATE INDEX t3i2 ON t3(b,a);
825 PRAGMA index_info='t3i2';
829 do_test pragma-6.5.2 {
831 pragma index_info(t3i1_bogus);
836 # Test for ticket #3320. When a temp table of the same name exists, make
837 # sure the schema of the main table can still be queried using
838 # "pragma table_info":
839 do_test pragma-6.6.1 {
841 CREATE TABLE trial(col_main);
842 CREATE TEMP TABLE trial(col_temp);
845 do_test pragma-6.6.2 {
847 PRAGMA table_info(trial);
849 } {0 col_temp {} 0 {} 0}
850 do_test pragma-6.6.3 {
852 PRAGMA temp.table_info(trial);
854 } {0 col_temp {} 0 {} 0}
855 do_test pragma-6.6.4 {
857 PRAGMA main.table_info(trial);
859 } {0 col_main {} 0 {} 0}
864 CREATE TABLE test_table(
865 one INT NOT NULL DEFAULT -1,
867 three VARCHAR(45, 65) DEFAULT 'abcde',
868 four REAL DEFAULT X'abcdef',
869 five DEFAULT CURRENT_TIME
872 capture_pragma db out {PRAGMA table_info(test_table)}
873 db eval {SELECT cid, "name", type, "notnull", dflt_value, pk FROM out
877 {1 two TEXT 0 {} 0} \
878 {2 three {VARCHAR(45, 65)} 0 'abcde' 0} \
879 {3 four REAL 0 X'abcdef' 0} \
880 {4 five {} 0 CURRENT_TIME 0} \
884 CREATE TABLE t68(a,b,c,PRIMARY KEY(a,b,a,c));
885 PRAGMA table_info(t68);
892 } ;# ifcapable schema_pragmas
893 # Miscellaneous tests
895 ifcapable schema_pragmas {
896 # EVIDENCE-OF: R-64103-17776 PRAGMA schema.index_list(table-name); This
897 # pragma returns one row for each index associated with the given table.
899 do_test pragma-7.1.1 {
900 # Make sure a pragma knows to read the schema if it needs to
903 capture_pragma db out "PRAGMA index_list(t3)"
904 db eval {SELECT name, "origin" FROM out ORDER BY name DESC}
905 } {t3i1 c sqlite_autoindex_t3_1 u}
906 do_test pragma-7.1.2 {
908 pragma index_list(t3_bogus);
911 } ;# ifcapable schema_pragmas
913 if {[permutation] == ""} {
918 pragma encoding=bogus;
920 } {1 {unsupported encoding: bogus}}
930 } {main unlocked temp closed}
942 #----------------------------------------------------------------------
943 # Test cases pragma-8.* test the "PRAGMA schema_version" and "PRAGMA
944 # user_version" statements.
946 # pragma-8.1: PRAGMA schema_version
947 # pragma-8.2: PRAGMA user_version
950 ifcapable schema_version {
952 # First check that we can set the schema version and then retrieve the
954 do_test pragma-8.1.1 {
956 PRAGMA schema_version = 105;
959 do_test pragma-8.1.2 {
961 PRAGMA schema_version;
963 } {schema_version 105}
964 sqlite3_db_config db DEFENSIVE 1
965 do_execsql_test pragma-8.1.3 {
966 PRAGMA schema_version = 106;
967 PRAGMA schema_version;
969 sqlite3_db_config db DEFENSIVE 0
970 do_execsql_test pragma-8.1.4 {
971 PRAGMA schema_version = 106;
972 PRAGMA schema_version;
975 # Check that creating a table modifies the schema-version (this is really
976 # to verify that the value being read is in fact the schema version).
977 do_test pragma-8.1.5 {
979 CREATE TABLE t4(a, b, c);
980 INSERT INTO t4 VALUES(1, 2, 3);
984 do_test pragma-8.1.6 {
986 PRAGMA schema_version;
990 # Now open a second connection to the database. Ensure that changing the
991 # schema-version using the first connection forces the second connection
992 # to reload the schema. This has to be done using the C-API test functions,
993 # because the TCL API accounts for SCHEMA_ERROR and retries the query.
994 do_test pragma-8.1.7 {
995 sqlite3 db2 test.db; set ::DB2 [sqlite3_connection_pointer db2]
1000 do_test pragma-8.1.8 {
1002 PRAGMA schema_version = 108;
1005 do_test pragma-8.1.9 {
1006 set ::STMT [sqlite3_prepare $::DB2 "SELECT * FROM t4" -1 DUMMY]
1007 sqlite3_step $::STMT
1009 do_test pragma-8.1.10 {
1010 sqlite3_finalize $::STMT
1013 # Make sure the schema-version can be manipulated in an attached database.
1014 forcedelete test2.db
1015 forcedelete test2.db-journal
1017 do_test pragma-8.1.11 {
1019 ATTACH 'test2.db' AS aux;
1020 CREATE TABLE aux.t1(a, b, c);
1021 PRAGMA aux.schema_version = 205;
1024 do_test pragma-8.1.12 {
1026 PRAGMA aux.schema_version;
1030 do_test pragma-8.1.13 {
1032 PRAGMA schema_version;
1036 # And check that modifying the schema-version in an attached database
1037 # forces the second connection to reload the schema.
1039 do_test pragma-8.1.14 {
1040 sqlite3 db2 test.db; set ::DB2 [sqlite3_connection_pointer db2]
1042 ATTACH 'test2.db' AS aux;
1043 SELECT * FROM aux.t1;
1046 do_test pragma-8.1.15 {
1048 PRAGMA aux.schema_version = 206;
1051 do_test pragma-8.1.16 {
1052 set ::STMT [sqlite3_prepare $::DB2 "SELECT * FROM aux.t1" -1 DUMMY]
1053 sqlite3_step $::STMT
1055 do_test pragma-8.1.17 {
1056 sqlite3_finalize $::STMT
1058 do_test pragma-8.1.18 {
1063 # Now test that the user-version can be read and written (and that we aren't
1064 # accidentally manipulating the schema-version instead).
1065 do_test pragma-8.2.1 {
1067 PRAGMA user_version;
1070 do_test pragma-8.2.2 {
1072 PRAGMA user_version = 2;
1075 do_test pragma-8.2.3.1 {
1077 PRAGMA user_version;
1080 do_test pragma-8.2.3.2 {
1084 PRAGMA user_version;
1087 do_test pragma-8.2.4.1 {
1089 PRAGMA schema_version;
1093 do_test pragma-8.2.4.2 {
1096 PRAGMA user_version;
1099 do_test pragma-8.2.4.3 {
1101 PRAGMA schema_version;
1107 db eval {ATTACH 'test2.db' AS aux}
1109 # Check that the user-version in the auxilary database can be manipulated (
1110 # and that we aren't accidentally manipulating the same in the main db).
1111 do_test pragma-8.2.5 {
1113 PRAGMA aux.user_version;
1116 do_test pragma-8.2.6 {
1118 PRAGMA aux.user_version = 3;
1121 do_test pragma-8.2.7 {
1123 PRAGMA aux.user_version;
1126 do_test pragma-8.2.8 {
1128 PRAGMA main.user_version;
1132 # Now check that a ROLLBACK resets the user-version if it has been modified
1133 # within a transaction.
1134 do_test pragma-8.2.9 {
1137 PRAGMA aux.user_version = 10;
1138 PRAGMA user_version = 11;
1141 do_test pragma-8.2.10 {
1143 PRAGMA aux.user_version;
1146 do_test pragma-8.2.11 {
1148 PRAGMA main.user_version;
1151 do_test pragma-8.2.12 {
1154 PRAGMA aux.user_version;
1157 do_test pragma-8.2.13 {
1159 PRAGMA main.user_version;
1164 # Try a negative value for the user-version
1165 do_test pragma-8.2.14 {
1167 PRAGMA user_version = -450;
1170 do_test pragma-8.2.15 {
1172 PRAGMA user_version;
1175 } ; # ifcapable schema_version
1177 # Check to see if TEMP_STORE is memory or disk. Return strings
1178 # "memory" or "disk" as appropriate.
1180 proc check_temp_store {} {
1182 PRAGMA temp.cache_size = 1;
1183 CREATE TEMP TABLE IF NOT EXISTS a(b);
1185 INSERT INTO a VALUES(randomblob(1000));
1186 INSERT INTO a SELECT * FROM a;
1187 INSERT INTO a SELECT * FROM a;
1188 INSERT INTO a SELECT * FROM a;
1189 INSERT INTO a SELECT * FROM a;
1190 INSERT INTO a SELECT * FROM a;
1191 INSERT INTO a SELECT * FROM a;
1192 INSERT INTO a SELECT * FROM a;
1193 INSERT INTO a SELECT * FROM a;
1195 db eval {PRAGMA database_list} {
1196 if {$name=="temp"} {
1197 set bt [btree_from_db db 1]
1198 if {[btree_ismemdb $bt]} {
1209 do_test pragma-8.3.1 {
1211 PRAGMA application_id;
1214 do_test pragma-8.3.2 {
1215 execsql {PRAGMA Application_ID(12345); PRAGMA application_id;}
1218 # Test temp_store and temp_store_directory pragmas
1220 ifcapable pager_pragmas {
1221 do_test pragma-9.1 {
1228 if {$TEMP_STORE<=1} {
1229 do_test pragma-9.1.1 {
1233 do_test pragma-9.1.1 {
1238 do_test pragma-9.2 {
1242 PRAGMA temp_store=file;
1246 if {$TEMP_STORE==3} {
1247 # When TEMP_STORE is 3, always use memory regardless of pragma settings.
1248 do_test pragma-9.2.1 {
1252 do_test pragma-9.2.1 {
1257 do_test pragma-9.3 {
1261 PRAGMA temp_store=memory;
1265 if {$TEMP_STORE==0} {
1266 # When TEMP_STORE is 0, always use the disk regardless of pragma settings.
1267 do_test pragma-9.3.1 {
1271 do_test pragma-9.3.1 {
1276 do_test pragma-9.4 {
1278 PRAGMA temp_store_directory;
1282 do_test pragma-9.5 {
1283 set pwd [string map {' ''} [file nativename [get_pwd]]]
1285 PRAGMA temp_store_directory='$pwd';
1288 do_test pragma-9.6 {
1290 PRAGMA temp_store_directory;
1292 } [list [file nativename [get_pwd]]]
1293 do_test pragma-9.7 {
1295 PRAGMA temp_store_directory='/NON/EXISTENT/PATH/FOOBAR';
1297 } {1 {not a writable directory}}
1298 do_test pragma-9.8 {
1300 PRAGMA temp_store_directory='';
1303 if {![info exists TEMP_STORE] || $TEMP_STORE<=1} {
1305 do_test pragma-9.9 {
1307 PRAGMA temp_store_directory;
1308 PRAGMA temp_store=FILE;
1309 CREATE TEMP TABLE temp_store_directory_test(a integer);
1310 INSERT INTO temp_store_directory_test values (2);
1311 SELECT * FROM temp_store_directory_test;
1314 do_test pragma-9.10 {
1316 PRAGMA temp_store_directory='$pwd';
1317 SELECT * FROM temp_store_directory_test;
1319 } {1 {no such table: temp_store_directory_test}}
1323 do_test pragma-9.11 {
1325 PRAGMA temp_store = 0;
1329 do_test pragma-9.12 {
1331 PRAGMA temp_store = 1;
1335 do_test pragma-9.13 {
1337 PRAGMA temp_store = 2;
1341 do_test pragma-9.14 {
1343 PRAGMA temp_store = 3;
1347 do_test pragma-9.15 {
1350 CREATE TEMP TABLE temp_table(t);
1351 INSERT INTO temp_table VALUES('valuable data');
1352 PRAGMA temp_store = 1;
1354 } {1 {temporary storage cannot be changed from within a transaction}}
1355 do_test pragma-9.16 {
1357 SELECT * FROM temp_table;
1362 do_test pragma-9.17 {
1364 INSERT INTO temp_table VALUES('valuable data II');
1365 SELECT * FROM temp_table;
1367 } {{valuable data} {valuable data II}}
1369 do_test pragma-9.18 {
1371 db eval {SELECT t FROM temp_table} {
1372 execsql {pragma temp_store = 1}
1376 } {1 {temporary storage cannot be changed from within a transaction}}
1378 } ;# ifcapable pager_pragmas
1382 do_test pragma-10.0 {
1387 PRAGMA count_changes = 1;
1389 CREATE TABLE t1(a PRIMARY KEY);
1390 CREATE TABLE t1_mirror(a);
1391 CREATE TABLE t1_mirror2(a);
1392 CREATE TRIGGER t1_bi BEFORE INSERT ON t1 BEGIN
1393 INSERT INTO t1_mirror VALUES(new.a);
1395 CREATE TRIGGER t1_ai AFTER INSERT ON t1 BEGIN
1396 INSERT INTO t1_mirror2 VALUES(new.a);
1398 CREATE TRIGGER t1_bu BEFORE UPDATE ON t1 BEGIN
1399 UPDATE t1_mirror SET a = new.a WHERE a = old.a;
1401 CREATE TRIGGER t1_au AFTER UPDATE ON t1 BEGIN
1402 UPDATE t1_mirror2 SET a = new.a WHERE a = old.a;
1404 CREATE TRIGGER t1_bd BEFORE DELETE ON t1 BEGIN
1405 DELETE FROM t1_mirror WHERE a = old.a;
1407 CREATE TRIGGER t1_ad AFTER DELETE ON t1 BEGIN
1408 DELETE FROM t1_mirror2 WHERE a = old.a;
1413 do_test pragma-10.1 {
1415 INSERT INTO t1 VALUES(randstr(10,10));
1418 do_test pragma-10.2 {
1420 UPDATE t1 SET a = randstr(10,10);
1423 do_test pragma-10.3 {
1429 } ;# ifcapable trigger
1431 ifcapable schema_pragmas {
1432 do_test pragma-11.1 {
1434 pragma collation_list;
1436 } {seq 0 name RTRIM seq 1 name NOCASE seq 2 name BINARY}
1437 do_test pragma-11.2 {
1438 db collate New_Collation blah...
1440 pragma collation_list;
1442 } {0 New_Collation 1 RTRIM 2 NOCASE 3 BINARY}
1445 ifcapable schema_pragmas&&tempdb {
1446 do_test pragma-12.1 {
1449 PRAGMA temp.table_info('abc');
1454 do_test pragma-12.2 {
1457 PRAGMA temp.default_cache_size = 200;
1458 PRAGMA temp.default_cache_size;
1463 do_test pragma-12.3 {
1466 PRAGMA temp.cache_size = 400;
1467 PRAGMA temp.cache_size;
1475 do_test pragma-13.1 {
1477 DROP TABLE IF EXISTS t4;
1478 PRAGMA vdbe_trace=on;
1479 PRAGMA vdbe_listing=on;
1480 PRAGMA sql_trace=on;
1481 CREATE TABLE t4(a INTEGER PRIMARY KEY,b);
1482 INSERT INTO t4(b) VALUES(x'0123456789abcdef0123456789abcdef0123456789');
1483 INSERT INTO t4(b) VALUES(randstr(30,30));
1484 INSERT INTO t4(b) VALUES(1.23456);
1485 INSERT INTO t4(b) VALUES(NULL);
1486 INSERT INTO t4(b) VALUES(0);
1487 INSERT INTO t4(b) SELECT b||b||b||b FROM t4;
1491 PRAGMA vdbe_trace=off;
1492 PRAGMA vdbe_listing=off;
1493 PRAGMA sql_trace=off;
1497 } ;# ifcapable bloblit
1499 ifcapable pager_pragmas {
1504 # EVIDENCE-OF: R-15672-33611 PRAGMA schema.page_count; Return the total
1505 # number of pages in the database file.
1507 do_test pragma-14.1 {
1508 execsql { pragma auto_vacuum = 0 }
1509 execsql { pragma page_count; pragma main.page_count }
1512 do_test pragma-14.2 {
1514 CREATE TABLE abc(a, b, c);
1516 PRAGMA main.page_count;
1517 PRAGMA temp.page_count;
1520 do_test pragma-14.2uc {
1521 execsql {pragma PAGE_COUNT}
1524 do_test pragma-14.3 {
1527 CREATE TABLE def(a, b, c);
1531 do_test pragma-14.3uc {
1532 execsql {pragma PAGE_COUNT}
1535 do_test pragma-14.4 {
1536 set page_size [db one {pragma page_size}]
1537 expr [file size test.db] / $page_size
1540 do_test pragma-14.5 {
1547 do_test pragma-14.6 {
1548 forcedelete test2.db
1549 sqlite3 db2 test2.db
1551 PRAGMA auto_vacuum = 0;
1552 CREATE TABLE t1(a, b, c);
1553 CREATE TABLE t2(a, b, c);
1554 CREATE TABLE t3(a, b, c);
1555 CREATE TABLE t4(a, b, c);
1559 ATTACH 'test2.db' AS aux;
1560 PRAGMA aux.page_count;
1563 do_test pragma-14.6uc {
1564 execsql {pragma AUX.PAGE_COUNT}
1568 # Test that the value set using the cache_size pragma is not reset when the
1569 # schema is reloaded.
1571 ifcapable pager_pragmas {
1574 do_test pragma-15.1 {
1576 PRAGMA cache_size=59;
1580 do_test pragma-15.2 {
1583 CREATE TABLE newtable(a, b, c);
1587 do_test pragma-15.3 {
1588 # Evaluating this statement will cause the schema to be reloaded (because
1589 # the schema was changed by another connection in pragma-15.2). At one
1590 # point there was a bug that reset the cache_size to its default value
1591 # when this happened.
1592 execsql { SELECT * FROM sqlite_master }
1593 execsql { PRAGMA cache_size }
1597 # Reset the sqlite3_temp_directory variable for the next run of tests:
1598 sqlite3 dbX :memory:
1599 dbX eval {PRAGMA temp_store_directory = ""}
1602 ifcapable lock_proxy_pragmas&&prefer_proxy_locking {
1603 set sqlite_hostid_num 1
1606 foreach {name value} [array get env SQLITE_FORCE_PROXY_LOCKING] {
1607 set using_proxy $value
1610 # Test the lock_proxy_file pragmas.
1613 set env(SQLITE_FORCE_PROXY_LOCKING) "0"
1616 do_test pragma-16.1 {
1618 PRAGMA lock_proxy_file="mylittleproxy";
1619 select * from sqlite_master;
1622 PRAGMA lock_proxy_file;
1626 do_test pragma-16.2 {
1629 PRAGMA lock_proxy_file="mylittleproxy";
1634 do_test pragma-16.2.1 {
1637 PRAGMA lock_proxy_file=":auto:";
1638 select * from sqlite_master;
1641 PRAGMA lock_proxy_file;
1646 do_test pragma-16.3 {
1649 PRAGMA lock_proxy_file="myotherproxy";
1652 select * from sqlite_master;
1654 } {1 {database is locked}}
1656 do_test pragma-16.4 {
1661 PRAGMA lock_proxy_file="myoriginalproxy";
1662 PRAGMA lock_proxy_file="myotherproxy";
1663 PRAGMA lock_proxy_file;
1668 set env(SQLITE_FORCE_PROXY_LOCKING) "1"
1669 do_test pragma-16.5 {
1672 PRAGMA lock_proxy_file=":auto:";
1673 PRAGMA lock_proxy_file;
1677 do_test pragma-16.6 {
1679 sqlite3 db2 test2.db
1680 set lockpath [execsql {
1681 PRAGMA lock_proxy_file=":auto:";
1682 PRAGMA lock_proxy_file;
1684 string match "*test2.db:auto:" $lockpath
1687 set sqlite_hostid_num 2
1688 do_test pragma-16.7 {
1692 PRAGMA lock_proxy_file=":auto:";
1693 select * from sqlite_master;
1696 } {1 {database is locked}}
1699 do_test pragma-16.8 {
1702 execsql { select * from sqlite_master }
1704 } {1 {database is locked}}
1707 do_test pragma-16.8.1 {
1709 PRAGMA lock_proxy_file="yetanotherproxy";
1710 PRAGMA lock_proxy_file;
1713 do_test pragma-16.8.2 {
1715 create table mine(x);
1720 do_test pragma-16.9 {
1721 sqlite3 db proxytest.db
1722 set lockpath2 [execsql {
1723 PRAGMA lock_proxy_file=":auto:";
1724 PRAGMA lock_proxy_file;
1726 string match "*proxytest.db:auto:" $lockpath2
1729 set env(SQLITE_FORCE_PROXY_LOCKING) $using_proxy
1730 set sqlite_hostid_num 0
1733 # Parsing of auto_vacuum settings.
1735 foreach {autovac_setting val} {
1751 do_test pragma-17.1.$autovac_setting {
1755 PRAGMA auto_vacuum=$::autovac_setting;
1761 # Parsing of temp_store settings.
1763 foreach {temp_setting val} {
1776 do_test pragma-18.1.$temp_setting {
1780 PRAGMA temp_store=$::temp_setting;
1781 PRAGMA temp_store=$::temp_setting;
1787 # The SQLITE_FCNTL_PRAGMA logic, with error handling.
1791 sqlite3 db test.db -vfs tvfs
1792 do_test pragma-19.1 {
1793 catchsql {PRAGMA error}
1794 } {1 {SQL logic error}}
1795 do_test pragma-19.2 {
1796 catchsql {PRAGMA error='This is the error message'}
1797 } {1 {This is the error message}}
1798 do_test pragma-19.3 {
1799 catchsql {PRAGMA error='7 This is the error message'}
1800 } {1 {This is the error message}}
1801 do_test pragma-19.4 {
1802 catchsql {PRAGMA error=7}
1803 } {1 {out of memory}}
1804 do_test pragma-19.5 {
1805 file tail [lindex [execsql {PRAGMA filename}] 0]
1808 if {$tcl_platform(platform)=="windows"} {
1809 # Test data_store_directory pragma
1814 do_test pragma-20.1 {
1815 catchsql {PRAGMA data_store_directory}
1817 do_test pragma-20.2 {
1818 set pwd [string map {' ''} [file nativename [get_pwd]]]
1819 catchsql "PRAGMA data_store_directory='$pwd';"
1821 do_test pragma-20.3 {
1822 catchsql {PRAGMA data_store_directory}
1823 } [list 0 [list [file nativename [get_pwd]]]]
1824 do_test pragma-20.4 {
1825 set pwd [string map {' ''} [file nativename \
1826 [file join [get_pwd] data_dir]]]
1827 catchsql "PRAGMA data_store_directory='$pwd';"
1829 do_test pragma-20.5 {
1830 sqlite3 db2 test2.db
1831 catchsql "PRAGMA database_list;" db2
1832 } [list 0 [list 0 main [file nativename \
1833 [file join [get_pwd] data_dir test2.db]]]]
1835 do_test pragma-20.6 {
1836 sqlite3 db2 [file join [get_pwd] test2.db]
1837 catchsql "PRAGMA database_list;" db2
1838 } [list 0 [list 0 main [file nativename \
1839 [file join [get_pwd] test2.db]]]]
1841 do_test pragma-20.7 {
1842 catchsql "PRAGMA data_store_directory='';"
1844 do_test pragma-20.8 {
1845 catchsql {PRAGMA data_store_directory}
1848 forcedelete data_dir
1851 database_may_be_corrupt
1852 if {![nonzero_reserved_bytes]} {
1855 # Create a corrupt database in testerr.db. And a non-corrupt at test.db.
1861 PRAGMA page_size = 1024;
1862 PRAGMA auto_vacuum = 0;
1863 CREATE TABLE t1(a PRIMARY KEY, b);
1864 INSERT INTO t1 VALUES(1, 1);
1866 for {set i 0} {$i < 10} {incr i} {
1867 execsql { INSERT INTO t1 SELECT a + (1 << $i), b + (1 << $i) FROM t1 }
1870 forcecopy test.db testerr.db
1871 hexio_write testerr.db 15000 [string repeat 55 100]
1874 set mainerr {*** in database main ***
1875 Multiple uses for byte 672 of page 15}
1876 set auxerr {*** in database aux ***
1877 Multiple uses for byte 672 of page 15}
1879 set mainerr {/{\*\*\* in database main \*\*\*
1880 Multiple uses for byte 672 of page 15}.*/}
1881 set auxerr {/{\*\*\* in database aux \*\*\*
1882 Multiple uses for byte 672 of page 15}.*/}
1886 sqlite3 db testerr.db
1887 execsql { PRAGMA integrity_check }
1894 ATTACH 'testerr.db' AS 'aux';
1895 PRAGMA integrity_check;
1899 execsql { PRAGMA main.integrity_check; }
1902 execsql { PRAGMA aux.integrity_check; }
1907 sqlite3 db testerr.db
1909 ATTACH 'test.db' AS 'aux';
1910 PRAGMA integrity_check;
1914 execsql { PRAGMA main.integrity_check; }
1917 execsql { PRAGMA aux.integrity_check; }
1922 forcedelete test.db test.db-wal test.db-journal
1927 CREATE TABLE t1(a INTEGER PRIMARY KEY,b,c,d);
1928 CREATE INDEX i1 ON t1(b,c);
1929 CREATE INDEX i2 ON t1(c,d);
1930 CREATE INDEX i2x ON t1(d COLLATE nocase, c DESC);
1931 CREATE INDEX i3 ON t1(d,b+c,c);
1932 CREATE TABLE t2(x INTEGER REFERENCES t1);
1934 db2 eval {SELECT name FROM sqlite_master}
1935 } {t1 i1 i2 i2x i3 t2}
1939 CREATE INDEX i2 ON t1(c,d,b);
1941 capture_pragma db2 out {PRAGMA index_info(i2)}
1942 db2 eval {SELECT cid, name, '|' FROM out ORDER BY seqno}
1943 } {2 c | 3 d | 1 b |}
1945 # EVIDENCE-OF: R-56143-29319 PRAGMA schema.index_xinfo(index-name); This
1946 # pragma returns information about every column in an index.
1948 # EVIDENCE-OF: R-45970-35618 Unlike this index_info pragma, this pragma
1949 # returns information about every column in the index, not just the key
1953 capture_pragma db2 out {PRAGMA index_xinfo(i2)}
1954 db2 eval {SELECT cid, name, "desc", coll, "key", '|' FROM out ORDER BY seqno}
1955 } {2 c 0 BINARY 1 | 3 d 0 BINARY 1 | 1 b 0 BINARY 1 | -1 {} 0 BINARY 0 |}
1957 # (The first column of output from PRAGMA index_xinfo is...)
1958 # EVIDENCE-OF: R-00197-14279 The rank of the column within the index. (0
1959 # means left-most. Key columns come before auxiliary columns.)
1961 # (The second column of output from PRAGMA index_xinfo is...)
1962 # EVIDENCE-OF: R-06603-49335 The rank of the column within the table
1963 # being indexed, or -1 if the index-column is the rowid of the table
1964 # being indexed and -2 if the index is on an expression.
1966 # (The third column of output from PRAGMA index_xinfo is...)
1967 # EVIDENCE-OF: R-40641-22898 The name of the column being indexed, or
1968 # NULL if the index-column is the rowid of the table being indexed or an
1971 # (The fourth column of output from PRAGMA index_xinfo is...)
1972 # EVIDENCE-OF: R-11847-09179 1 if the index-column is sorted in reverse
1973 # (DESC) order by the index and 0 otherwise.
1975 # (The fifth column of output from PRAGMA index_xinfo is...)
1976 # EVIDENCE-OF: R-15313-19540 The name for the collating sequence used to
1977 # compare values in the index-column.
1979 # (The sixth column of output from PRAGMA index_xinfo is...)
1980 # EVIDENCE-OF: R-14310-64553 1 if the index-column is a key column and 0
1981 # if the index-column is an auxiliary column.
1984 db2 eval {PRAGMA index_xinfo(i2)}
1985 } {0 2 c 0 BINARY 1 1 3 d 0 BINARY 1 2 1 b 0 BINARY 1 3 -1 {} 0 BINARY 0}
1987 db2 eval {PRAGMA index_xinfo(i2x)}
1988 } {0 3 d 0 nocase 1 1 2 c 1 BINARY 1 2 -1 {} 0 BINARY 0}
1990 db2 eval {PRAGMA index_xinfo(i3)}
1991 } {0 3 d 0 BINARY 1 1 -2 {} 0 BINARY 1 2 2 c 0 BINARY 1 3 -1 {} 0 BINARY 0}
1993 # EVIDENCE-OF: R-64103-17776 PRAGMA schema.index_list(table-name); This
1994 # pragma returns one row for each index associated with the given table.
1996 # (The first column of output from PRAGMA index_list is...)
1997 # EVIDENCE-OF: R-02753-24748 A sequence number assigned to each index
1998 # for internal tracking purposes.
2000 # (The second column of output from PRAGMA index_list is...)
2001 # EVIDENCE-OF: R-35496-03635 The name of the index.
2003 # (The third column of output from PRAGMA index_list is...)
2004 # EVIDENCE-OF: R-57301-64506 "1" if the index is UNIQUE and "0" if not.
2006 # (The fourth column of output from PRAGMA index_list is...)
2007 # EVIDENCE-OF: R-36609-39554 "c" if the index was created by a CREATE
2008 # INDEX statement, "u" if the index was created by a UNIQUE constraint,
2009 # or "pk" if the index was created by a PRIMARY KEY constraint.
2013 DROP INDEX IF EXISTS i3;
2014 CREATE INDEX i3 ON t1(d,b,c);
2016 capture_pragma db2 out {PRAGMA index_list(t1)}
2017 db2 eval {SELECT seq, name, "unique", origin, '|' FROM out ORDER BY seq}
2018 } {0 i3 0 c | 1 i2 0 c | 2 i2x 0 c | 3 i1 0 c |}
2019 ifcapable altertable {
2022 ALTER TABLE t1 ADD COLUMN e;
2025 PRAGMA table_info(t1);
2032 CREATE TABLE t2(x, y INTEGER REFERENCES t1);
2035 PRAGMA foreign_key_list(t2);
2037 } {0 0 t1 y {} {NO ACTION} {NO ACTION} NONE}
2040 ifcapable !has_codec {
2042 do_execsql_test 24.0 {
2043 PRAGMA page_size = 1024;
2044 CREATE TABLE t1(a, b, c);
2045 CREATE INDEX i1 ON t1(b);
2046 INSERT INTO t1 VALUES('a', 'b', 'c');
2047 PRAGMA integrity_check;
2050 set r [db one {SELECT rootpage FROM sqlite_master WHERE name = 't1'}]
2052 hexio_write test.db [expr $r*1024 - 16] 000000000000000701040f0f1f616263
2055 do_catchsql_test 24.1 {
2057 } {1 {database disk image is malformed}}
2058 do_catchsql_test 24.2 {
2059 PRAGMA integrity_check;
2060 } {0 {{database disk image is malformed}}}
2062 database_never_corrupt
2064 # 2023-03-27. Register allocation issue in integrity_check discovered
2065 # by new assert() statements added in [6f8b97f31a4c8552].
2066 # dbsqlfuzz dc9ab26037cf5ef797d28cd1ae0855ade584216d
2070 do_execsql_test 25.0 {
2071 CREATE TABLE t1(a INT, b AS (a*2) NOT NULL);
2072 CREATE TEMP TABLE t2(a PRIMARY KEY, b, c UNIQUE) WITHOUT ROWID;
2073 CREATE UNIQUE INDEX t2x ON t2(c,b);
2074 PRAGMA integrity_check;