]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Tweak to the new whereB.test file to make it more consistent.
authordrh <drh@noemail.net>
Thu, 13 Aug 2009 19:54:26 +0000 (19:54 +0000)
committerdrh <drh@noemail.net>
Thu, 13 Aug 2009 19:54:26 +0000 (19:54 +0000)
FossilOrigin-Name: 06098505fca5c67b627a9e1102451f93e490e192

manifest
manifest.uuid
test/whereB.test

index b64decd3131d69101a167250492403fa77960c86..2d31d4304c829e9e30801bd1bb486dcc63dec17d 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,8 @@
-C If\sa\sbinary\soperator\sin\sa\sWHERE\sclause\sthat\sshould\sbe\sperformed\swith\sno\saffinity\sconversions\sapplied\sto\sits\soperands\s(see\shttp://www.sqlite.org/datatype3.html)\sis\soptimized\sby\sindex\slookup,\sdo\snot\sapply\sany\sconversions\sto\sthe\skey\svalue\sbefore\slooking\sit\sup\sin\sthe\sindex.\sFix\sfor\s93fb9f89d6.
-D 2009-08-13T19:21:17
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+C Tweak\sto\sthe\snew\swhereB.test\sfile\sto\smake\sit\smore\sconsistent.
+D 2009-08-13T19:54:26
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in c606c9b502dfde3b9c3b2d23ed49f3737829693b
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -715,7 +718,7 @@ F test/where8.test 8d3704d04a683e792d373005f2e4e13bfd7e2dd5
 F test/where8m.test da346596e19d54f0aba35ebade032a7c47d79739
 F test/where9.test be19e1a92f80985c1a121b4678bf7d2123eaa623
 F test/whereA.test 1d1674254614147c866ab9b59af6582f454a858c
-F test/whereB.test ea2fef0038214300509711ede09677af4f2afad6
+F test/whereB.test 0def95db3bdec220a731c7e4bec5930327c1d8c5
 F test/wherelimit.test 5e9fd41e79bb2b2d588ed999d641d9c965619b31
 F test/zeroblob.test caaecfb4f908f7bc086ed238668049f96774d688
 F tool/diffdb.c 7524b1b5df217c20cd0431f6789851a4e0cb191b
@@ -743,7 +746,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/vdbe-compress.tcl 672f81d693a03f80f5ae60bfefacd8a349e76746
-P 1048459824746307c9e4296cbc21716bf8b5449d
-R 9cf12527faa6d7b7304f1183ac06fe71
-U dan
-Z 0b088089cd7635bacda9499fff4849b7
+P e72186f2d68d28c2e0c32894f9adb28c155b5f63
+R 377facb39ca07c9822015bb38587e08c
+U drh
+Z 790262cc14ea855f23bc65e5fce164b6
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.6 (GNU/Linux)
+
+iD8DBQFKhG91oxKgR168RlERAuSzAJ0a1rCGYfwoJ9dV+c9Zwd2taAavOgCfUsmX
+BBUK3s7ImIZPIJMhsKU71rs=
+=i8oq
+-----END PGP SIGNATURE-----
index 856939186d1f1f0851882f5f344a1dcf11cf082d..0478845b803b5629e2c7f67297097899a0ae141a 100644 (file)
@@ -1 +1 @@
-e72186f2d68d28c2e0c32894f9adb28c155b5f63
\ No newline at end of file
+06098505fca5c67b627a9e1102451f93e490e192
\ No newline at end of file
index c6e06e988a68a20af38581d99ec0d9f81e0df1af..e4438547d778d58285a05f9617ffa892abe102fd 100644 (file)
@@ -137,15 +137,15 @@ do_test whereB-3.1 {
     DROP TABLE t2;
 
     CREATE TABLE t1(x, y BLOB);    -- affinity of t1.y is NONE
-    INSERT INTO t1 VALUES(1,2);
+    INSERT INTO t1 VALUES(1,99);
 
     CREATE TABLE t2(a, b BLOB);  -- affinity of t2.b is NONE
     CREATE INDEX t2b ON t2(b);
-    INSERT INTO t2 VALUES(11,'2');
+    INSERT INTO t2 VALUES(2,'99');
 
     SELECT x, a, y=b FROM t1, t2;
   }
-} {1 11 0}
+} {1 2 0}
 do_test whereB-3.2 {
   db eval {
     SELECT x, a, y=b FROM t1, t2 WHERE y=b;