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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user