]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Modify a query in test/thread001.test to ensure that results are returned in the...
authordan <dan@noemail.net>
Wed, 5 Dec 2012 16:44:13 +0000 (16:44 +0000)
committerdan <dan@noemail.net>
Wed, 5 Dec 2012 16:44:13 +0000 (16:44 +0000)
FossilOrigin-Name: 51cbddd51d02bcd954be411ecc83556c049a2680

manifest
manifest.uuid
test/thread001.test

index 431fbf1d2557a1d42446b53369c57009f4a3fd36..37bee138b06f730eb90734cbfe8154b030d3f9e1 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fixes\sto\sa\stest\scase\sin\sshared_err.test.\sThe\sfix\sis\sto\sprevent\ssqlite3_prepare()\sfrom\sbeing\scalled\swhen\sthe\stest\sintends\sto\stest\sthe\sresponse\sof\ssqlite3_step()\sto\san\sOOM\scondition.
-D 2012-12-05T14:37:55.972
+C Modify\sa\squery\sin\stest/thread001.test\sto\sensure\sthat\sresults\sare\sreturned\sin\sthe\sorder\sexpected\sby\sthe\stest.
+D 2012-12-05T16:44:13.337
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 82c41c0ed4cc94dd3cc7d498575b84c57c2c2384
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -746,7 +746,7 @@ F test/tempdb.test 19d0f66e2e3eeffd68661a11c83ba5e6ace9128c
 F test/temptable.test 51edd31c65ed1560dd600b1796e8325df96318e2
 F test/temptrigger.test 26670ed7a39cf2296a7f0a9e0a1d7bdb7abe936d
 F test/tester.tcl 2f383e811010b05a83c0f00fc168cae1dd63a6d9
-F test/thread001.test 7cc2ce08f9cde95964736d11e91f9ab610f82f91
+F test/thread001.test 9f22fd3525a307ff42a326b6bc7b0465be1745a5
 F test/thread002.test e630504f8a06c00bf8bbe68528774dd96aeb2e58
 F test/thread003.test ee4c9efc3b86a6a2767516a37bd64251272560a7
 F test/thread004.test f51dfc3936184aaf73ee85f315224baad272a87f
@@ -1025,7 +1025,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
 F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
-P 9f6c68856b694373b7ffb124abd996e519ba5921
-R 0d9643e028363737d4ff9c9748568eab
+P 40c143955ebe75f8e73119f9103f36a3c8ac4514
+R f84e4b8cfc7fea3471a813d76f6cf616
 U dan
-Z bbb987d6c204716231a7c44af62004e5
+Z cfac0ef537a462cb80cbccc9f0909b0c
index 97719f291b3072d69e77145d02b0150999f9e9be..bc1844d3468659b7e3e6001efdfcf12aefba2f64 100644 (file)
@@ -1 +1 @@
-40c143955ebe75f8e73119f9103f36a3c8ac4514
\ No newline at end of file
+51cbddd51d02bcd954be411ecc83556c049a2680
\ No newline at end of file
index 7e0893f29d1dbbcb1b56707d22e027a935ed9195..a796c57b4a13a9d2f10ec5854d205caf87d0250f 100644 (file)
@@ -87,7 +87,7 @@ foreach {tn same_db shared_cache} [list \
       do_test t1 {
         execsql {
           SELECT 
-            (SELECT md5sum(a, b) FROM ab WHERE a < (SELECT max(a) FROM ab)) ==
+            (SELECT md5sum(a, b) FROM ab WHERE +a < (SELECT max(a) FROM ab)) ==
             (SELECT b FROM ab WHERE a = (SELECT max(a) FROM ab))
         }
       } {1}
@@ -131,7 +131,7 @@ foreach {tn same_db shared_cache} [list \
   do_test thread001.$tn.6 {
     execsql {
       SELECT 
-        (SELECT md5sum(a, b) FROM ab WHERE a < (SELECT max(a) FROM ab)) ==
+        (SELECT md5sum(a, b) FROM ab WHERE +a < (SELECT max(a) FROM ab)) ==
         (SELECT b FROM ab WHERE a = (SELECT max(a) FROM ab))
     }
   } {1}