diff options
author | dan <dan@noemail.net> | 2015-05-14 08:58:52 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2015-05-14 08:58:52 +0000 |
commit | 82550796112a77e13cc447b910a9625a8e65c184 (patch) | |
tree | d158eba7c431c4f78e161490cff40552a6d49730 /src/tclsqlite.c | |
parent | 6758959ec350c2379a5d93fe3cc335b268fc6538 (diff) | |
parent | 13a24f841c86f6e8c64c9ceb1dcce8eb89e162ac (diff) | |
download | sqlite-82550796112a77e13cc447b910a9625a8e65c184.tar.gz sqlite-82550796112a77e13cc447b910a9625a8e65c184.zip |
Merge latest trunk changes with this branch.
FossilOrigin-Name: 299ed55c909d327826ef47e204ef1e9afd54852b
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index b67428f0d..24114e92f 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3704,7 +3704,7 @@ static int db_last_stmt_ptr( return TCL_OK; } -#endif +#endif /* SQLITE_TEST */ /* ** Configure the interpreter passed as the first argument to have access @@ -3724,17 +3724,6 @@ static void init_all(Tcl_Interp *interp){ Md5_Init(interp); #endif - /* Install the [register_dbstat_vtab] command to access the implementation - ** of virtual table dbstat (source file test_stat.c). This command is - ** required for testfixture and sqlite3_analyzer, but not by the production - ** Tcl extension. */ -#if defined(SQLITE_TEST) || TCLSH==2 - { - extern int SqlitetestStat_Init(Tcl_Interp*); - SqlitetestStat_Init(interp); - } -#endif - #ifdef SQLITE_TEST { extern int Sqliteconfig_Init(Tcl_Interp*); |