aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordan <dan@noemail.net>2012-12-05 16:44:13 +0000
committerdan <dan@noemail.net>2012-12-05 16:44:13 +0000
commit97305a7ccb17c4fccf375625206cba25c42ffed7 (patch)
tree724292ac9d838a336c9a28968d427c72355e5ca6
parent9ccaefb172900780bf2449aa26b3c61b12e9550f (diff)
downloadsqlite-97305a7ccb17c4fccf375625206cba25c42ffed7.tar.gz
sqlite-97305a7ccb17c4fccf375625206cba25c42ffed7.zip
Modify a query in test/thread001.test to ensure that results are returned in the order expected by the test.
FossilOrigin-Name: 51cbddd51d02bcd954be411ecc83556c049a2680
-rw-r--r--manifest12
-rw-r--r--manifest.uuid2
-rw-r--r--test/thread001.test4
3 files changed, 9 insertions, 9 deletions
diff --git a/manifest b/manifest
index 431fbf1d2..37bee138b 100644
--- 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
diff --git a/manifest.uuid b/manifest.uuid
index 97719f291..bc1844d34 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-40c143955ebe75f8e73119f9103f36a3c8ac4514 \ No newline at end of file
+51cbddd51d02bcd954be411ecc83556c049a2680 \ No newline at end of file
diff --git a/test/thread001.test b/test/thread001.test
index 7e0893f29..a796c57b4 100644
--- a/test/thread001.test
+++ b/test/thread001.test
@@ -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}