diff options
author | drh <drh@noemail.net> | 2017-10-21 17:17:17 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-10-21 17:17:17 +0000 |
commit | aa79e434f1cf89a3d9e47c92ebb26661b5ffae82 (patch) | |
tree | d42b470c4aad5ea7387d3a44bff7d51df7b86b8e /src/sqliteInt.h | |
parent | 82cae9ffd62c1375adef56d9e0d43c099691c797 (diff) | |
parent | 6fe3733ba97193227a395c7796bb9ca0d6f82134 (diff) | |
download | sqlite-aa79e434f1cf89a3d9e47c92ebb26661b5ffae82.tar.gz sqlite-aa79e434f1cf89a3d9e47c92ebb26661b5ffae82.zip |
Merge all the enhancements and bug fixes from trunk, since none are
destablizing. Call this the second beta.
FossilOrigin-Name: fb3ee1b7cac09e4950e4f48b44c277e4f391cb6c8f069644732d2389ca653da4
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 |