diff options
author | drh <drh@noemail.net> | 2017-10-12 20:37:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-10-12 20:37:20 +0000 |
commit | 88dd668942076194e2af73d6668cd9d872f20d0c (patch) | |
tree | 4cbf7e046ad573e2a9cd9560d51244c122d379eb /src/sqliteInt.h | |
parent | aa62d2e48fe554bddeccab8837f344452137ded4 (diff) | |
parent | 277ee81babd94ce08cda6c57596759dec457f35b (diff) | |
download | sqlite-88dd668942076194e2af73d6668cd9d872f20d0c.tar.gz sqlite-88dd668942076194e2af73d6668cd9d872f20d0c.zip |
Add the sqlite_dbpage virtual table (enabled using SQLITE_ENABLE_DBPAGE_VTAB).
Make that virtual table and dbstat available to the command-line shell.
FossilOrigin-Name: eaeeb09d4aa1dbccdd2488af8461e2a8c8a53d92c63fd56330be041ad72a9e4a
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index a8f1bed51..0cc435d7b 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4400,6 +4400,9 @@ int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*); int sqlite3ThreadJoin(SQLiteThread*, void**); #endif +#if defined(SQLITE_ENABLE_DBPAGE_VTAB) || defined(SQLITE_TEST) +int sqlite3DbpageRegister(sqlite3*); +#endif #if defined(SQLITE_ENABLE_DBSTAT_VTAB) || defined(SQLITE_TEST) int sqlite3DbstatRegister(sqlite3*); #endif |