]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix requirements marks only. No changes to code or tests.
authordrh <drh@noemail.net>
Thu, 30 Jan 2014 15:03:50 +0000 (15:03 +0000)
committerdrh <drh@noemail.net>
Thu, 30 Jan 2014 15:03:50 +0000 (15:03 +0000)
FossilOrigin-Name: 4a34378b9b02e463081729186dcb9b0404dbcd06

manifest
manifest.uuid
test/e_select.test

index d1099a7749fdfb8bca6b538974954faebae4073d..cc818173f13e66ee1334efdd1e81bff5aa62a21b 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Update\sa\srequirement\smark\sand\sadd\ssome\sadditional\stest\scases\sto\scover\nthe\srequirement\sassociated\swith\sORDER\sBY\sand\sLIMIT\son\scompound\sSELECT\nstatements.
-D 2014-01-30T14:10:00.638
+C Fix\srequirements\smarks\sonly.\s\sNo\schanges\sto\scode\sor\stests.
+D 2014-01-30T15:03:50.330
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -444,7 +444,7 @@ F test/e_fts3.test 5c02288842e4f941896fd44afdef564dd5fc1459
 F test/e_insert.test 1e44f84d2abe44d66e4fbf198be4b20e3cc724a0
 F test/e_reindex.test 396b7b4f0a66863b4e95116a67d93b227193e589
 F test/e_resolve.test dcce9308fb13b934ce29591105d031d3e14fbba6
-F test/e_select.test 5ea777ed64da80e9555c899418147545672d79e0
+F test/e_select.test d159f8b9f4489e6f8ca070b2ca9979206856eb11
 F test/e_select2.test aceb80ab927d46fba5ce7586ebabf23e2bb0604f
 F test/e_update.test 312cb8f5ccfe41515a6bb092f8ea562a9bd54d52
 F test/e_uri.test a2c92d80093a7efdcfbb11093651cbea87097b6b
@@ -1152,7 +1152,7 @@ F tool/vdbe-compress.tcl 0cf56e9263a152b84da86e75a5c0cdcdb7a47891
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
-P c9bef0f29a5a7f04914d80e58105104babd4168c
-R ae529b38795c843e83dc18ea74bfef1b
+P 8560091e85f2f99a24810648868bf2e081c32698
+R 910df673e4073912e875417aedade94a
 U drh
-Z 79880c6c4300891d14acd2d52b2dcd6c
+Z d92a31ea54cc58b07b68e352bd02fd37
index 772abde60039ed8161386765ddb002b449a50125..8dfcce52620459dbc5c5d81f203c55385b66601b 100644 (file)
@@ -1 +1 @@
-8560091e85f2f99a24810648868bf2e081c32698
\ No newline at end of file
+4a34378b9b02e463081729186dcb9b0404dbcd06
\ No newline at end of file
index 4822df5f0b1d088820fe4112930b8b9be63883a7..d108f9cb7fede2ad728497095e7f1148b687c6e9 100644 (file)
@@ -464,10 +464,10 @@ do_join_test e_select-1.4.2.1 {
 ]
 # TODO: Come back and add a few more like the above.
 
-# EVIDENCE-OF: R-20659-43267 In other words, if the left-hand dataset
-# consists of Nlhs rows of Mlhs columns, and the right-hand dataset of
-# Nrhs rows of Mrhs columns, then the cartesian product is a dataset of
-# Nlhs.Nrhs rows, each containing Mlhs+Mrhs columns.
+# EVIDENCE-OF: R-18439-38548 In other words, if the left-hand dataset
+# consists of Nleft rows of Mleft columns, and the right-hand dataset of
+# Nright rows of Mright columns, then the cartesian product is a dataset
+# of Nleft&times;Nright rows, each containing Mleft+Mright columns.
 #
 # x1, x2    (Nlhs=3, Nrhs=2)   (Mlhs=2, Mrhs=3)
 do_join_test e_select-1.4.3.1 { 
@@ -732,10 +732,10 @@ do_execsql_test e_select-3.0 {
   INSERT INTO x2 VALUES(7, 'mistrusted', 'standardized');
 } {}
 
-# EVIDENCE-OF: R-06999-14330 If a WHERE clause is specified, the WHERE
+# EVIDENCE-OF: R-60775-64916 If a WHERE clause is specified, the WHERE
 # expression is evaluated for each row in the input data as a boolean
-# expression. All rows for which the WHERE clause expression evaluates
-# to false are excluded from the dataset before continuing.
+# expression. Only rows for which the WHERE clause expression evaluates
+# to true are included from the dataset before continuing.
 #
 do_execsql_test e_select-3.1.1 { SELECT k FROM x1 WHERE x }         {3}
 do_execsql_test e_select-3.1.2 { SELECT k FROM x1 WHERE y }         {3 5 6}