]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a problem in vtab1.test causing it to fail when run with any permutation that...
authordan <dan@noemail.net>
Fri, 8 Jun 2012 11:48:40 +0000 (11:48 +0000)
committerdan <dan@noemail.net>
Fri, 8 Jun 2012 11:48:40 +0000 (11:48 +0000)
FossilOrigin-Name: 006db555260273209933371d17afb33d557baa68

manifest
manifest.uuid
test/vtab1.test

index c259a51bfc37fcb2de4ef5705d7966da32ef3083..fa00549acad2f1c79e64e31c3c505411a4fd31f5 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Documentation\sand\sevidence\smark\supdates.\s\sRemove\sa\sredundant\sassert().
-D 2012-06-07T17:57:23.952
+C Fix\sa\sproblem\sin\svtab1.test\scausing\sit\sto\sfail\swhen\srun\swith\sany\spermutation\sthat\sexecutes\sSQL\swithin\sthe\stcl\s"sqlite3"\scommand.
+D 2012-06-08T11:48:40.417
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 4f37eb61be9d38643cdd839a74b8e3bad724cfcf
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -907,7 +907,7 @@ F test/vacuum4.test d3f8ecff345f166911568f397d2432c16d2867d9
 F test/varint.test ab7b110089a08b9926ed7390e7e97bdefeb74102
 F test/veryquick.test 7701bb609fe8bf6535514e8b849a309e8f00573b
 F test/view.test b182a67ec43f490b156b5a710827a341be83dd17
-F test/vtab1.test 331ca61ba0b5df4d2f2e55ee2b9596fde4228dbe
+F test/vtab1.test 10fb9e656fe4b318cd82ff1616a340acc01aac4b
 F test/vtab2.test 7bcffc050da5c68f4f312e49e443063e2d391c0d
 F test/vtab3.test baad99fd27217f5d6db10660522e0b7192446de1
 F test/vtab4.test 942f8b8280b3ea8a41dae20e7822d065ca1cb275
@@ -1005,7 +1005,7 @@ F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
-P 7caca1939ce70d5b14ae8ca8ff6afb62f8aff361
-R 7d7d8055ffab93415bb0679c51b1e783
-U drh
-Z 4e021c1abd989c10ef460664cb392a3f
+P cfcbf9375fddd0aae0dd17bdc76a710ab77ef667
+R 8ff78017c6658336dad044270ecb0a43
+U dan
+Z 28491c4fd8a5cdbccb56a6e17a0bf165
index 04a75c4fc132e3d63b12c4744aea3a79992a5fa6..d4dd001a07328bf313299b890767bfe84422afc3 100644 (file)
@@ -1 +1 @@
-cfcbf9375fddd0aae0dd17bdc76a710ab77ef667
\ No newline at end of file
+006db555260273209933371d17afb33d557baa68
\ No newline at end of file
index 9fb843f754aff161454253bb2ee70a94775092e8..340994304ccd1f4a69344a9c9be2c0f1109e4912 100644 (file)
@@ -1222,6 +1222,10 @@ do_test vtab1-17.1 {
   }
 } {}
 
+do_test vtab1-17.2 {
+  execsql { DELETE FROM sqlite_master WHERE sql LIKE 'insert%' }
+} {}
+
 #-------------------------------------------------------------------------
 # The following tests - vtab1-18.* - test that the optimization of LIKE
 # constraints in where.c plays well with virtual tables.