diff options
author | drh <drh@noemail.net> | 2015-05-04 17:06:39 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-05-04 17:06:39 +0000 |
commit | 84ab95395ed6fbed8f8bd331a2a517b65524cae6 (patch) | |
tree | cd94e83e9cf81b9494f0a3eb061b0d704d4dc038 /src/shell.c | |
parent | 9af8646dceb11457e9cb045c2db6e6b725be2242 (diff) | |
download | sqlite-84ab95395ed6fbed8f8bd331a2a517b65524cae6.tar.gz sqlite-84ab95395ed6fbed8f8bd331a2a517b65524cae6.zip |
Include the "dbstat" virtual table in the amalgamation.
FossilOrigin-Name: fc6504aa8ca19b3737f72c1e20db8df6b7608dd2
Diffstat (limited to 'src/shell.c')
-rw-r--r-- | src/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c b/src/shell.c index 8b5695ac1..0eab88e6c 100644 --- a/src/shell.c +++ b/src/shell.c @@ -1910,7 +1910,7 @@ static void open_db(ShellState *p, int keepAlive){ if( p->db==0 ){ sqlite3_initialize(); sqlite3_open(p->zDbFilename, &p->db); -#ifdef SQLITE_ENABLE_STAT_VTAB +#ifdef SQLITE_ENABLE_DBSTAT_VTAB if( p->db ){ int sqlite3_dbstat_register(sqlite3*); sqlite3_dbstat_register(p->db); |