]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Do not assume that "col IS ?" matches at most a single row of a UNIQUE column unless...
authordan <dan@noemail.net>
Fri, 15 May 2015 19:59:23 +0000 (19:59 +0000)
committerdan <dan@noemail.net>
Fri, 15 May 2015 19:59:23 +0000 (19:59 +0000)
FossilOrigin-Name: e038ce8955e785afcc07bb22499955bbd22a7af4

manifest
manifest.uuid
src/where.c
test/where4.test

index f3fa1b1913b5ae225a77a75a780d2a388c984cff..86810c4e13162533d1e791e26b1dd03dd8ac1e91 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Simplifications\sto\serror\smessage\sprocessing.\s\sFix\sa\spossible\sproblem\sin\serror\nmessage\sformatting\swhen\svacuuming\sa\sdatabase\swith\sa\scorrupt\sschema.
-D 2015-05-15T04:13:15.980
+C Do\snot\sassume\sthat\s"col\sIS\s?"\smatches\sat\smost\sa\ssingle\srow\sof\sa\sUNIQUE\scolumn\sunless\sthe\scolumn\sis\salso\sNOT\sNULL.
+D 2015-05-15T19:59:23.465
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in edfc69769e613a6359c42c06ea1d42c3bece1736
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -307,7 +307,7 @@ F src/vxworks.h c18586c8edc1bddbc15c004fa16aeb1e1342b4fb
 F src/wal.c ce2cb2d06faab54d1bce3e739bec79e063dd9113
 F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4
 F src/walker.c c253b95b4ee44b21c406e2a1052636c31ea27804
-F src/where.c 08fadd0d211699348349be5449f3a1e391adf20e
+F src/where.c 78dd9fc79b44be2a0eb37f4315b6785592cc000b
 F src/whereInt.h a6f5a762bc1b4b1c76e1cea79976b437ac35a435
 F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2
 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
@@ -1168,7 +1168,7 @@ F test/walthread.test de8dbaf6d9e41481c460ba31ca61e163d7348f8e
 F test/where.test 1ff3d9f8da0a6c0dc5ccfd38d9225b2cdb5b6afb
 F test/where2.test 23fdb5d8e756554aad4ca7ae03de9dd8367a2c6e
 F test/where3.test 1ad55ba900bd7747f98b6082e65bd3e442c5004e
-F test/where4.test a4603fa0d018bd4b9430dac840c9c522af421dd5
+F test/where4.test 68aa5ad796e33816db2078bc0f6de719c7a0e21f
 F test/where5.test fdf66f96d29a064b63eb543e28da4dfdccd81ad2
 F test/where6.test 5da5a98cec820d488e82708301b96cb8c18a258b
 F test/where7.test 5a4b0abc207d71da4deecd734ad8579e8dd40aa8
@@ -1258,7 +1258,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P be438d049dd9d7aa6b88db8314eaa11bdd7af5b9
-R 71064bfce8a81bd8d5b829a20a3cc70a
-U drh
-Z 79e4b5f5046076a826cf4c89f92e95b1
+P 56ef98a04765c34c1c2f3ed7a6f03a732f3b886e
+R 40b8a98e6255d5ebcc7a2294b397be72
+U dan
+Z 3608bbb309c9166edff355d025615d3b
index ef592d80feac6a9a4dcbb4d97f53807a34b7831d..74e4d95f487afaced39f089acde11426d7486b5f 100644 (file)
@@ -1 +1 @@
-56ef98a04765c34c1c2f3ed7a6f03a732f3b886e
\ No newline at end of file
+e038ce8955e785afcc07bb22499955bbd22a7af4
\ No newline at end of file
index e6023dd03501b39967eac1e6e00572b3aa2368ea..ab841e93fc34db99760d906b3c74b37ef96a685a 100644 (file)
@@ -6330,15 +6330,17 @@ static int whereShortCut(WhereLoopBuilder *pBuilder){
     pLoop->rRun = 33;  /* 33==sqlite3LogEst(10) */
   }else{
     for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
+      int opmask;
       assert( pLoop->aLTermSpace==pLoop->aLTerm );
       if( !IsUniqueIndex(pIdx)
        || pIdx->pPartIdxWhere!=0 
        || pIdx->nKeyCol>ArraySize(pLoop->aLTermSpace) 
       ) continue;
+      opmask = pIdx->uniqNotNull ? (WO_EQ|WO_IS) : WO_EQ;
       for(j=0; j<pIdx->nKeyCol; j++){
-        pTerm = findTerm(pWC, iCur, pIdx->aiColumn[j], 0, WO_EQ|WO_IS, pIdx);
+        pTerm = findTerm(pWC, iCur, pIdx->aiColumn[j], 0, opmask, pIdx);
         if( pTerm==0 ) break;
-         testcase( pTerm->eOperator & WO_IS );
+        testcase( pTerm->eOperator & WO_IS );
         pLoop->aLTerm[j] = pTerm;
       }
       if( j!=pIdx->nKeyCol ) continue;
index 6bceb9174b93e32b615eca2d8d9032469ce32ba5..20c69771ad2a0bcca72102060dbaf7a00e4cfd0f 100644 (file)
@@ -19,6 +19,7 @@
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
+set testprefix where4
 
 ifcapable !tclvar||!bloblit {
   finish_test
@@ -285,4 +286,22 @@ do_test where4-7.2 {
 
 }; #ifcapable subquery
 
+#-------------------------------------------------------------------------
+# Verify that "IS ?" with a NULL bound to the variable also functions
+# correctly.
+
+unset -nocomplain null
+
+do_execsql_test 8.1 {
+  CREATE TABLE u9(a UNIQUE, b);
+  INSERT INTO u9 VALUES(NULL, 1);
+  INSERT INTO u9 VALUES(NULL, 2);
+}
+do_execsql_test 8.2 { SELECT * FROM u9 WHERE a IS NULL  } {{} 1 {} 2}
+do_execsql_test 8.2 { SELECT * FROM u9 WHERE a IS $null } {{} 1 {} 2}
+
+
+
+
 finish_test
+