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

Fix a couple of assert() statements in os_unix.c and wal.c. Combine sqlite3WalIsDirty() with sqlite3WalUndo().

FossilOrigin-Name: a8f958be804ee05c4137b3cd110db344713af5f2
This commit is contained in:
dan
2010-04-30 09:52:17 +00:00
parent ba51590bcd
commit 4c97b53425
6 changed files with 22 additions and 35 deletions

View File

@@ -59,9 +59,6 @@ u32 sqlite3WalSavepoint(Wal *pWal);
** response to a ROLLBACK TO command. */
int sqlite3WalSavepointUndo(Wal *pWal, u32 iFrame);
/* Return true if data has been written but not committed to the log file. */
int sqlite3WalDirty(Wal *pWal);
/* Write a frame or frames to the log. */
int sqlite3WalFrames(Wal *pWal, int, PgHdr *, Pgno, int, int);