diff options
author | dan <dan@noemail.net> | 2011-11-08 20:08:44 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2011-11-08 20:08:44 +0000 |
commit | 22e21ff4fc04b67f176060f5f3471a9b4a8afa70 (patch) | |
tree | c72d9ba0079fb6272602a9d7679f8558b1e858f5 /src/sqliteInt.h | |
parent | 5802464316abd24623bdd62e028bf4ad6ed1c184 (diff) | |
download | sqlite-22e21ff4fc04b67f176060f5f3471a9b4a8afa70.tar.gz sqlite-22e21ff4fc04b67f176060f5f3471a9b4a8afa70.zip |
Experimental change to the pcache interface to allow page buffers to be allocated separately from their associated container structures.
FossilOrigin-Name: c275c9d323cb1dccb031b199d413ac3a0b244fea
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 2171c1574..46bec6a30 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2459,7 +2459,7 @@ struct Sqlite3Config { int nLookaside; /* Default lookaside buffer count */ sqlite3_mem_methods m; /* Low-level memory allocation interface */ sqlite3_mutex_methods mutex; /* Low-level mutex interface */ - sqlite3_pcache_methods pcache; /* Low-level page-cache interface */ + sqlite3_pcache_methods2 pcache2; /* Low-level page-cache interface */ void *pHeap; /* Heap storage space */ int nHeap; /* Size of pHeap[] */ int mnReq, mxReq; /* Min and max heap requests sizes */ |