1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Update the API documentation for the new pcache2 interface. Change the

order of parameters on the xCreate method of pcache2.

FossilOrigin-Name: 4da7095683ec821414e255419d63a24dbd9d726d
This commit is contained in:
drh
2011-11-09 00:06:05 +00:00
parent 22e21ff4fc
commit e5c40b18e3
6 changed files with 75 additions and 65 deletions

View File

@@ -221,7 +221,7 @@ int sqlite3PcacheFetch(
if( !pCache->pCache && createFlag ){
sqlite3_pcache *p;
p = sqlite3GlobalConfig.pcache2.xCreate(
pCache->szExtra + sizeof(PgHdr), pCache->szPage, pCache->bPurgeable
pCache->szPage, pCache->szExtra + sizeof(PgHdr), pCache->bPurgeable
);
if( !p ){
return SQLITE_NOMEM;