diff options
author | dan <dan@noemail.net> | 2015-05-13 18:12:58 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2015-05-13 18:12:58 +0000 |
commit | 5d03b9d36592cf22cc53bd4dbe9ffbdfc4949545 (patch) | |
tree | 668bd7b85f1a66b6ac2f5fca5483dbf514439e01 /src/tclsqlite.c | |
parent | 23d538885eb5b4db3056f0cce47004248bf1949f (diff) | |
parent | 13a24f841c86f6e8c64c9ceb1dcce8eb89e162ac (diff) | |
download | sqlite-5d03b9d36592cf22cc53bd4dbe9ffbdfc4949545.tar.gz sqlite-5d03b9d36592cf22cc53bd4dbe9ffbdfc4949545.zip |
Merge latest trunk changes with this branch.
FossilOrigin-Name: b5f0e8c5b4bc018d672617ffd342d12b228548b9
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 cf576bbef..7dc5063d7 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*); |