-C Add\stest\sinstrumentation\sthat\swill\sbe\sneeded\sduring\sthe\sdevelopment\sof\nforthcoming\soptimizer\senhancements.\s(CVS\s2548)
-D 2005-07-15T13:05:21
+C Fix\sbugs\sin\sthe\snew\squery\splan\sinstrumention\slogic.\s(CVS\s2549)
+D 2005-07-15T23:24:24
F Makefile.in 22ea9c0fe748f591712d8fe3c6d972c6c173a165
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
F src/sqliteInt.h af65e8fac1fe8f6f78a65551081bafd49f6e0650
F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9
F src/tclsqlite.c cccaf6b78c290d824cf8ea089b8b27377e545830
-F src/test1.c 889257e281064952943d54fd7c2f86d52e36cbbe
+F src/test1.c 1dea8df4abb846cb3a2ce8a6e13d8b32dbd31b16
F src/test2.c 716c1809dba8e5be6093703e9cada99d627542dc
F src/test3.c 683e1e3819152ffd35da2f201e507228921148d0
F src/test4.c 7c6b9fc33dd1f3f93c7f1ee6e5e6d016afa6c1df
F src/vdbeaux.c 3732a86566a6be4da4c606e9334baf3fd98667af
F src/vdbefifo.c b8805850afe13b43f1de78d58088cb5d66f88e1e
F src/vdbemem.c da8e8d6f29dd1323f782f000d7cd120027c9ff03
-F src/where.c 878bf7f2e155ce56dec0e1401740e3c4b9ed0c96
+F src/where.c e6b7be981e79988b1586d8bcdebfd7840e6462f7
F tclinstaller.tcl 046e3624671962dc50f0481d7c25b38ef803eb42
F test/all.test 7f0988442ab811dfa41793b5b550f5828ce316f3
F test/alter.test 9d6837a3d946b73df692b7cef2a7644d2e2f6bc6
F test/vacuum2.test 5d77e98c458bcdbeecc6327de5107179ba1aa095
F test/varint.test ab7b110089a08b9926ed7390e7e97bdefeb74102
F test/view.test 3c79232a2ee45918c62a0cf90411525899404a76
-F test/where.test 9de2426d0b8296b3aa7801cef5f81daf51f8e516
+F test/where.test 2d6e6ebeea7b95c0f0f1b0335a80c13a10592c6b
F tool/diffdb.c 7524b1b5df217c20cd0431f6789851a4e0cb191b
F tool/lemon.c c88936c67f6411608db8fa4254d254f509fa40f6
F tool/lempar.c f0c30abcae762a7d1eb37cd88b2232ab8dd625fb
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
-P ead583cfad7c6ea84c3685d89f40104f4d33bc81
-R 3e8a508676bc28d1b35000f20bc57673
+P dfd5fd77b0764853f847eeee3c1fe047d60fee7e
+R 407e6021e72c837a936d4205fddd2503
U drh
-Z 8bf5cdb836c3940fc9c9b2f203ba626d
+Z 0ce70505a05c8384502058350e244c6a
-dfd5fd77b0764853f847eeee3c1fe047d60fee7e
\ No newline at end of file
+578490c91331a386f84652db0b3bfd74c82046e1
\ No newline at end of file
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
-** $Id: test1.c,v 1.148 2005/07/15 13:05:21 drh Exp $
+** $Id: test1.c,v 1.149 2005/07/15 23:24:24 drh Exp $
*/
#include "sqliteInt.h"
#include "tcl.h"
extern int sqlite3_sync_count, sqlite3_fullsync_count;
extern int sqlite3_opentemp_count;
extern char sqlite3_query_plan[];
+ static char *query_plan = sqlite3_query_plan;
for(i=0; i<sizeof(aCmd)/sizeof(aCmd[0]); i++){
Tcl_CreateCommand(interp, aCmd[i].zName, aCmd[i].xProc, 0, 0);
Tcl_LinkVar(interp, "sqlite_os_trace",
(char*)&sqlite3_os_trace, TCL_LINK_INT);
Tcl_LinkVar(interp, "sqlite_query_plan",
- sqlite3_query_plan, TCL_LINK_STRING|TCL_LINK_READ_ONLY);
+ (char*)&query_plan, TCL_LINK_STRING|TCL_LINK_READ_ONLY);
#ifndef SQLITE_OMIT_DISKIO
Tcl_LinkVar(interp, "sqlite_opentemp_count",
(char*)&sqlite3_opentemp_count, TCL_LINK_INT);
** 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.143 2005/07/15 13:05:21 drh Exp $
+** $Id: where.c,v 1.144 2005/07/15 23:24:24 drh Exp $
*/
#include "sqliteInt.h"
#ifdef SQLITE_TEST
/* Record in the query plan information about the current table
** and the index used to access it (if any). If the table itself
- ** is not used, its name is followed by '*'. If no index is used
+ ** is not used, its name is just '{}'. If no index is used
** the index is listed as "{}"
*/
{
- int n = strlen(pTab->zName);
+ char *z = pTabItem->zAlias;
+ int n;
+ if( z==0 ) z = pTab->zName;
+ n = strlen(z);
if( n+nQPlan < sizeof(sqlite3_query_plan)-10 ){
- strcpy(&sqlite3_query_plan[nQPlan], pTab->zName);
- nQPlan += n;
- if( (pLevel->score & 1)==0 ){
- sqlite3_query_plan[nQPlan++] = '*';
+ if( (pLevel->score & 1)!=0 ){
+ strcpy(&sqlite3_query_plan[nQPlan], "{}");
+ nQPlan += 2;
+ }else{
+ strcpy(&sqlite3_query_plan[nQPlan], z);
+ nQPlan += n;
}
sqlite3_query_plan[nQPlan++] = ' ';
}
# This file implements regression tests for SQLite library. The
# focus of this file is testing the use of indices in WHERE clases.
#
-# $Id: where.test,v 1.29 2005/06/06 17:27:19 drh Exp $
+# $Id: where.test,v 1.30 2005/07/15 23:24:25 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
do_test where-1.1 {
count {SELECT x, y FROM t1 WHERE w=10}
} {3 121 3}
+do_test where-1.1.2 {
+ set sqlite_query_plan
+} {t1 i1w}
do_test where-1.2 {
count {SELECT x, y FROM t1 WHERE w=11}
} {3 144 3}
do_test where-1.4 {
count {SELECT x, y FROM t1 WHERE 11=w AND x>2}
} {3 144 3}
+do_test where-1.4.2 {
+ set sqlite_query_plan
+} {t1 i1w}
do_test where-1.5 {
count {SELECT x, y FROM t1 WHERE y<200 AND w=11 AND x>2}
} {3 144 3}
+do_test where-1.5.2 {
+ set sqlite_query_plan
+} {t1 i1w}
do_test where-1.6 {
count {SELECT x, y FROM t1 WHERE y<200 AND x>2 AND w=11}
} {3 144 3}
do_test where-1.8 {
count {SELECT x, y FROM t1 WHERE w>10 AND y=144 AND x=3}
} {3 144 3}
+do_test where-1.8.2 {
+ set sqlite_query_plan
+} {t1 i1xy}
+do_test where-1.8.3 {
+ count {SELECT x, y FROM t1 WHERE y=144 AND x=3}
+ set sqlite_query_plan
+} {{} i1xy}
do_test where-1.9 {
count {SELECT x, y FROM t1 WHERE y=144 AND w>10 AND x=3}
} {3 144 3}