aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2011-11-08 20:08:44 +0000
committerdan <dan@noemail.net>2011-11-08 20:08:44 +0000
commit22e21ff4fc04b67f176060f5f3471a9b4a8afa70 (patch)
treec72d9ba0079fb6272602a9d7679f8558b1e858f5 /src/sqliteInt.h
parent5802464316abd24623bdd62e028bf4ad6ed1c184 (diff)
downloadsqlite-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.h2
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 */