diff options
author | drh <drh@noemail.net> | 2009-06-18 17:22:39 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-06-18 17:22:39 +0000 |
commit | fa9601a9a6a8ddc35be690cfa2cb8fbd8c92fa31 (patch) | |
tree | cf176971cc5a5345f352468fd463a8d456bb8c17 /src/sqliteInt.h | |
parent | ccf6d0934db46a2afef1e0ad507e237b4fc69ac5 (diff) | |
download | sqlite-fa9601a9a6a8ddc35be690cfa2cb8fbd8c92fa31.tar.gz sqlite-fa9601a9a6a8ddc35be690cfa2cb8fbd8c92fa31.zip |
Move codec management from database connections into the pager so that it
will work together with shared cache. (CVS 6782)
FossilOrigin-Name: ed08b53cd64c4ff2c94ef4e48441c5236041c9ca
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 0601584b8..67fc1344f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.884 2009/06/15 20:45:35 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.885 2009/06/18 17:22:39 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -645,10 +645,6 @@ struct Db { u8 inTrans; /* 0: not writable. 1: Transaction. 2: Checkpoint */ u8 safety_level; /* How aggressive at syncing data to disk */ Schema *pSchema; /* Pointer to database schema (possibly shared) */ -#ifdef SQLITE_HAS_CODEC - void *pAux; /* Auxiliary data. Usually NULL */ - void (*xFreeAux)(void*); /* Routine to free pAux */ -#endif }; /* |