1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Define the sqlite3PagerWalFramesize() function even if SQLITE_OMIT_WAL is used.

FossilOrigin-Name: 96247853ef3d556a13b899b4c907b9fa2c78d513
This commit is contained in:
drh
2012-10-10 12:14:09 +00:00
parent 453a312091
commit f7c7031f52
3 changed files with 9 additions and 9 deletions

View File

@@ -6916,6 +6916,8 @@ int sqlite3PagerCloseWal(Pager *pPager){
return rc;
}
#endif /* !SQLITE_OMIT_WAL */
#ifdef SQLITE_ENABLE_ZIPVFS
/*
** A read-lock must be held on the pager when this function is called. If
@@ -6945,6 +6947,4 @@ void *sqlite3PagerCodec(PgHdr *pPg){
}
#endif /* SQLITE_HAS_CODEC */
#endif /* !SQLITE_OMIT_WAL */
#endif /* SQLITE_OMIT_DISKIO */