diff options
author | drh <drh@noemail.net> | 2016-03-03 17:54:30 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-03-03 17:54:30 +0000 |
commit | 5b382017084a910f3d4436b8110d73764caf01b0 (patch) | |
tree | ded2cb6b37a6188b002a3ec3e5def03eb9ef3a41 /src | |
parent | 9cc24c8002c9bbfe0615aee849c8043f7ac702e3 (diff) | |
parent | c5c1507612e0e5d45b8683ba406e12fe6ac9c94a (diff) | |
download | sqlite-5b382017084a910f3d4436b8110d73764caf01b0.tar.gz sqlite-5b382017084a910f3d4436b8110d73764caf01b0.zip |
Merge 3.11.1 changes into trunk.
FossilOrigin-Name: 7abc2dd953477797fa05421b061d73596aa025fb
Diffstat (limited to 'src')
-rw-r--r-- | src/test_bestindex.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test_bestindex.c b/src/test_bestindex.c index 6982ce3ca..ab10463fd 100644 --- a/src/test_bestindex.c +++ b/src/test_bestindex.c @@ -210,7 +210,6 @@ static int tclClose(sqlite3_vtab_cursor *cur){ static int tclNext(sqlite3_vtab_cursor *pVtabCursor){ tcl_cursor *pCsr = (tcl_cursor*)pVtabCursor; - tcl_vtab *pTab = (tcl_vtab*)(pVtabCursor->pVtab); if( pCsr->pStmt ){ tcl_vtab *pTab = (tcl_vtab*)(pVtabCursor->pVtab); int rc = sqlite3_step(pCsr->pStmt); @@ -286,7 +285,6 @@ static int tclFilter( rc = SQLITE_ERROR; pTab->base.zErrMsg = sqlite3_mprintf("%s", zErr); }else{ - int iArgv = 1; for(ii=0; rc==SQLITE_OK && ii<nElem; ii+=2){ const char *zCmd = Tcl_GetString(apElem[ii]); Tcl_Obj *p = apElem[ii+1]; |