diff options
author | drh <drh@noemail.net> | 2014-08-21 16:09:36 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-08-21 16:09:36 +0000 |
commit | 2571e4eddd05dceb9c707e8356153d0836d84228 (patch) | |
tree | 323ddb8b65cd40629b860f2b64cd1fb71efd023a /src/tclsqlite.c | |
parent | 3a432b0b475fa5ae550a1ab35279c2647344138c (diff) | |
parent | b6b4b79f344096791542265763467fc90f139c2e (diff) | |
download | sqlite-2571e4eddd05dceb9c707e8356153d0836d84228.tar.gz sqlite-2571e4eddd05dceb9c707e8356153d0836d84228.zip |
Merge all recent trunk changes, especially the fix for
ticket [369d57fb8e5ccdff06f1], but also the skip-scan improvement and
performance improvements in the b-tree code.
FossilOrigin-Name: 0b9e2c3269695713b538561d999c68097db70f0c
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index c61726ba1..791a58b42 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -2466,7 +2466,7 @@ static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ if( rc==TCL_OK ){ rc = createIncrblobChannel( - interp, pDb, zDb, zTable, zColumn, iRow, isReadonly + interp, pDb, zDb, zTable, zColumn, (sqlite3_int64)iRow, isReadonly ); } #endif |