-C Change\spcache.test\sso\sthat\sit\sworks\sif\ssqlite\sis\sconfigured\sto\screate\sauto-vacuum\sdatabases\sby\sdefault.\s(CVS\s5678)
-D 2008-09-05T05:29:09
+C Deallocate\sa\stemp\sregister\sallocated\sby\scodeEqualityTerm()\sin\swhere.c.\sIf\sit\sis\snot\sdeallocated,\sits\svalue\smay\sbe\sreused\sby\sthe\scolumn-cache\smechanism.\sHowever,\sby\sthe\stime\sit\sis\sused,\sthe\svalue\smay\shave\sbeen\sclobbered\sby\sa\ssub-routine\sthat\salso\suses\sthe\ssame\stemp\sregister.\sFix\sfor\s#3357.\s(CVS\s5679)
+D 2008-09-06T14:19:11
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in 689e14735f862a5553bceef206d8c13e29504e44
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
F src/vdbemem.c 51538ff193e1fcd462123ccef65323ccd2cc030c
F src/vtab.c 527c180e9c5fca417c9167d02af4b5039f892b4b
F src/walker.c 488c2660e13224ff70c0c82761118efb547f8f0d
-F src/where.c 72a4ac6890e9571375458021688dba6c45689082
+F src/where.c a9958b26cc87ea1446fbe6d004a7959b8d5d75c1
F tclinstaller.tcl 4356d9d94d2b5ed5e68f9f0c80c4df3048dd7617
F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
F test/alias.test c321c114a8a31a33e3cbda910fa39949f5d9dcb2
F test/tkt3298.test a735582095ca2e90a0c1391c7e781a90de6c1f34
F test/tkt3334.test ea13a53cb176e90571a76c86605b14a09efe366d
F test/tkt3346.test 2f9a2be8621a87cbdb6283177dd419c7c46dd2a1
+F test/tkt3357.test b37a51a12ba5e143d6714778276438606f8f9e27
F test/tokenize.test ce430a7aed48fc98301611429595883fdfcab5d7
F test/trace.test 951cd0f5f571e7f36bf7bfe04be70f90fb16fb00
F test/trans.test 2fd24cd7aa0b879d49a224cbd647d698f1e7ac5c
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 0b8ee83f2ebadab099ccd6490f6995949dafdd6f
-R 932fafef78ea6489de48ca6f4803a6b4
+P 55e677569ec131c388841f6f453291f737738076
+R 737efb409a0015e9a7163c40b2224334
U danielk1977
-Z 9246690989981e51181a3ec91bf495d4
+Z 56b39276941be5e96c36dc21cdd5080a
-55e677569ec131c388841f6f453291f737738076
\ No newline at end of file
+7c0f638ef3d7ff9156f07d6fb01448453ffcf5ac
\ No newline at end of file
** so is applicable. Because this module is responsible for selecting
** indices, you might also think of this module as the "query optimizer".
**
-** $Id: where.c,v 1.321 2008/08/25 12:08:22 drh Exp $
+** $Id: where.c,v 1.322 2008/09/06 14:19:11 danielk1977 Exp $
*/
#include "sqliteInt.h"
nxt = pLevel->nxt;
sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, nxt);
sqlite3VdbeAddOp3(v, OP_NotExists, iCur, nxt, r1);
+ sqlite3ReleaseTempReg(pParse, r1);
VdbeComment((v, "pk"));
pLevel->op = OP_Noop;
}else if( pLevel->flags & WHERE_ROWID_RANGE ){
--- /dev/null
+# 2008 September 1
+#
+# The author disclaims copyright to this source code. In place of
+# a legal notice, here is a blessing:
+#
+# May you do good and not evil.
+# May you find forgiveness for yourself and forgive others.
+# May you share freely, never taking more than you give.
+#
+#***********************************************************************
+#
+# This file implements regression tests for SQLite library. The
+# focus of this file is testing the fix for ticket #3357.
+#
+# $Id: tkt3357.test,v 1.1 2008/09/06 14:19:11 danielk1977 Exp $
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+
+do_test tkt3357-1.1 {
+ execsql {
+ create table a(id integer primary key, b_id integer, myvalue varchar);
+ create table b(id integer primary key, bvalue varchar);
+ insert into a(b_id, myvalue) values(1,'Test');
+ insert into a(b_id, myvalue) values(1,'Test2');
+ insert into a(b_id, myvalue) values(1,'Test3');
+ insert into b(bvalue) values('btest');
+ }
+} {}
+
+do_test tkt3357-1.2 {
+ execsql {
+ SELECT cc.id, cc.b_id, cc.myvalue, dd.bvalue
+ FROM (
+ SELECT DISTINCT a.id, a.b_id, a.myvalue FROM a
+ INNER JOIN b ON a.b_id = b.id WHERE b.bvalue = 'btest'
+ ) cc
+ LEFT OUTER JOIN b dd ON cc.b_id = dd.id
+ }
+} {1 1 Test btest 2 1 Test2 btest 3 1 Test3 btest}
+
+do_test tkt3357-1.3 {
+ execsql {
+ SELECT cc.id, cc.b_id, cc.myvalue
+ FROM (
+ SELECT a.id, a.b_id, a.myvalue
+ FROM a, b WHERE a.b_id = b.id
+ ) cc
+ LEFT OUTER JOIN b dd ON cc.b_id = dd.id
+ }
+} {1 1 Test 2 1 Test2 3 1 Test3}
+
+do_test tkt3357-1.4 {
+ execsql {
+ SELECT cc.id, cc.b_id, cc.myvalue
+ FROM (
+ SELECT DISTINCT a.id, a.b_id, a.myvalue
+ FROM a, b WHERE a.b_id = b.id
+ ) cc
+ LEFT OUTER JOIN b dd ON cc.b_id = dd.id
+ }
+} {1 1 Test 2 1 Test2 3 1 Test3}
+
+finish_test
+