mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix test cases for the new information in PRAGMA index_list.
FossilOrigin-Name: dd03be1065537679c2daf5e4200902c47714fceb
This commit is contained in:
12
manifest
12
manifest
@ -1,5 +1,5 @@
|
|||||||
C Rollback\ssome\sof\sthe\sprevious\schanges\sin\sthe\sbranch\ssuch\sthat\sthe\sestimated\nrow\ssizes\sare\snow\sonly\sused\sas\sa\stie-breaker\sfor\sindex\sscans.
|
C Fix\stest\scases\sfor\sthe\snew\sinformation\sin\sPRAGMA\sindex_list.
|
||||||
D 2013-10-08T20:42:41.270
|
D 2013-10-08T22:25:22.225
|
||||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||||
F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e
|
F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e
|
||||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||||
@ -724,7 +724,7 @@ F test/pcache.test b09104b03160aca0d968d99e8cd2c5b1921a993d
|
|||||||
F test/pcache2.test a83efe2dec0d392f814bfc998def1d1833942025
|
F test/pcache2.test a83efe2dec0d392f814bfc998def1d1833942025
|
||||||
F test/percentile.test b98fc868d71eb5619d42a1702e9ab91718cbed54
|
F test/percentile.test b98fc868d71eb5619d42a1702e9ab91718cbed54
|
||||||
F test/permutations.test 72f4f8881d388163ddbbeec0a6ed812e863ea2e6
|
F test/permutations.test 72f4f8881d388163ddbbeec0a6ed812e863ea2e6
|
||||||
F test/pragma.test de128f0253ee42a1edf6c80f21813babfb19bd3b
|
F test/pragma.test 5c6e8ae9eaa9a505cc1035b51f7f0da9805092c7
|
||||||
F test/pragma2.test 224f0381f9411a78ae685cac24c13656a62021b7
|
F test/pragma2.test 224f0381f9411a78ae685cac24c13656a62021b7
|
||||||
F test/printf.test ec9870c4dce8686a37818e0bf1aba6e6a1863552
|
F test/printf.test ec9870c4dce8686a37818e0bf1aba6e6a1863552
|
||||||
F test/progress.test a282973d1d17f08071bc58a77d6b80f2a81c354d
|
F test/progress.test a282973d1d17f08071bc58a77d6b80f2a81c354d
|
||||||
@ -1121,7 +1121,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
|
|||||||
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
||||||
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
||||||
F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
|
F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
|
||||||
P 3fd5e33217a91402b3499fa0977469b91618a928
|
P 65553ff34b41e54d129ff2fee96be714105503c4
|
||||||
R 2e607623289a6e77a66e8d2d68d4002e
|
R d3d1b6ad57e8af21028db8307fcc9c99
|
||||||
U drh
|
U drh
|
||||||
Z 42356aefb8b584494e71f168c94cd126
|
Z d60d26e04d8b288fede2321c4c580bed
|
||||||
|
@ -1 +1 @@
|
|||||||
65553ff34b41e54d129ff2fee96be714105503c4
|
dd03be1065537679c2daf5e4200902c47714fceb
|
@ -574,7 +574,7 @@ ifcapable {foreignkey} {
|
|||||||
execsql {
|
execsql {
|
||||||
pragma index_list(t3);
|
pragma index_list(t3);
|
||||||
}
|
}
|
||||||
} {/0 sqlite_autoindex_t3_1 1 \d+/}
|
} {/0 {} 1 \d+ 1 sqlite_autoindex_t3_1 1 \d+/}
|
||||||
}
|
}
|
||||||
ifcapable {!foreignkey} {
|
ifcapable {!foreignkey} {
|
||||||
execsql {CREATE TABLE t3(a,b UNIQUE)}
|
execsql {CREATE TABLE t3(a,b UNIQUE)}
|
||||||
@ -647,7 +647,7 @@ do_test pragma-7.1.1 {
|
|||||||
execsql {
|
execsql {
|
||||||
pragma index_list(t3);
|
pragma index_list(t3);
|
||||||
}
|
}
|
||||||
} {/0 t3i1 0 \d+ 1 sqlite_autoindex_t3_1 1 \d+/}
|
} {/0 {} 1 \d+ 1 t3i1 0 \d+ 2 sqlite_autoindex_t3_1 1 \d+/}
|
||||||
do_test pragma-7.1.2 {
|
do_test pragma-7.1.2 {
|
||||||
execsql {
|
execsql {
|
||||||
pragma index_list(t3_bogus);
|
pragma index_list(t3_bogus);
|
||||||
@ -1661,7 +1661,7 @@ do_test 23.3 {
|
|||||||
CREATE INDEX i3 ON t1(d,b,c);
|
CREATE INDEX i3 ON t1(d,b,c);
|
||||||
}
|
}
|
||||||
db2 eval {PRAGMA index_list(t1)}
|
db2 eval {PRAGMA index_list(t1)}
|
||||||
} {/0 i3 0 \d+ 1 i2 0 \d+ 2 i1 0 \d+/}
|
} {/0 {} 1 \d+ 1 i3 0 \d+ 2 i2 0 \d+ 3 i1 0 \d+/}
|
||||||
do_test 23.4 {
|
do_test 23.4 {
|
||||||
db eval {
|
db eval {
|
||||||
ALTER TABLE t1 ADD COLUMN e;
|
ALTER TABLE t1 ADD COLUMN e;
|
||||||
|
Reference in New Issue
Block a user