-C Fix\sa\stypo\sin\sa\scomment.\s\sNo\schanges\sto\scode.
-D 2015-05-16T18:31:44.355
+C Fix\sthe\stransitive\sconstraint\sprocessing\sto\sonly\sallow\stransitivity\sif\sthe\noperands\sof\sthe\s==\sor\sIS\soperator\shave\scompatible\saffinities.
+D 2015-05-16T19:17:17.907
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in edfc69769e613a6359c42c06ea1d42c3bece1736
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
F src/wal.c ce2cb2d06faab54d1bce3e739bec79e063dd9113
F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4
F src/walker.c c253b95b4ee44b21c406e2a1052636c31ea27804
-F src/where.c 430ae75d8850ea9e3c7ceba8e05adb105300ddb4
+F src/where.c 58c0161b81ec25bf7d221baf445d871ab98d9cce
F src/whereInt.h a6f5a762bc1b4b1c76e1cea79976b437ac35a435
F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2
F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 2c1039d454e359b0eec3db2d4201b4ba7e543052
-R c540749c837ccfa9e646ed2d9c9c0493
+P ee4b74250ad7a4061421d44b490cb79f649b3720
+R 1beebe1e9084926919d5e75f3ab331f9
+T *branch * transitive-constraints
+T *sym-transitive-constraints *
+T -sym-trunk *
U drh
-Z 98006a9bc56782e174c039d9f287e37a
+Z 9dd679bea28da23301e6184e5fdbcc54
if( idxNew==0 ) return;
pNew = &pWC->a[idxNew];
markTermAsChild(pWC, idxNew, idxTerm);
+ if( op==TK_IS ) pNew->wtFlags |= TERM_IS;
pTerm = &pWC->a[idxTerm];
pTerm->wtFlags |= TERM_COPIED;
+
+ /* Expressions of the form "A==B" or "A IS B" might be candidates
+ ** for propagating constraints via the transitive property. In other
+ ** words: "A==B AND B==$xyz" implies "A==$xyz". If this term
+ ** qualifies, mark it with WO_EQUIV. Necessary preconditions:
+ ** 1. The term is not in the ON clause of a LEFT JOIN
+ ** 2. The affinities of A and B must be compatible
+ ** 3. The SQLITE_Transitive optimization must be enabled
+ */
if( (op==TK_EQ || op==TK_IS)
&& !ExprHasProperty(pExpr, EP_FromJoin)
&& OptimizationEnabled(db, SQLITE_Transitive)
){
- pTerm->eOperator |= WO_EQUIV;
- eExtraOp = WO_EQUIV;
+ char aff1 = sqlite3ExprAffinity(pDup->pLeft);
+ char aff2 = sqlite3ExprAffinity(pDup->pRight);
+ if( aff1==aff2
+ || (sqlite3IsNumericAffinity(aff1) && sqlite3IsNumericAffinity(aff2))
+ ){
+ pTerm->eOperator |= WO_EQUIV;
+ eExtraOp = WO_EQUIV;
+ }
}
- if( op==TK_IS ) pNew->wtFlags |= TERM_IS;
}else{
pDup = pExpr;
pNew = pTerm;