diff options
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 6868e240b..f735aa408 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.445 2005/12/29 23:33:54 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.446 2005/12/30 16:28:02 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -289,6 +289,11 @@ struct SqliteTsd { Pager *pPager; /* Linked list of all pagers in this thread */ #endif +#ifndef SQLITE_OMIT_SHARED_CACHE + u8 useSharedData; /* True if shared pagers and schemas are enabled */ + BtShared *pBtree; +#endif + #ifdef SQLITE_MEMDEBUG i64 nMaxAlloc; /* High water mark of SqliteTsd.nAlloc */ int mallocAllowed; /* assert() in sqlite3Malloc() if not set */ |