diff options
author | dan <dan@noemail.net> | 2010-06-02 18:59:03 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2010-06-02 18:59:03 +0000 |
commit | 6e6bd5658f1fa8ab3780a309b42acab4de00e7d9 (patch) | |
tree | 52f0cf34970165226726328bb1707a0408269b8e /src/wal.h | |
parent | 10ec894c3a07e21c164e5589324165eba01ea1bd (diff) | |
download | sqlite-6e6bd5658f1fa8ab3780a309b42acab4de00e7d9.tar.gz sqlite-6e6bd5658f1fa8ab3780a309b42acab4de00e7d9.zip |
Fix a problem with rolling back to a savepoint opened before the writer decided to wrap the log file.
FossilOrigin-Name: 6b4aed6aae7dc9e92807d27375cbe1e83c15841b
Diffstat (limited to 'src/wal.h')
-rw-r--r-- | src/wal.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ # define sqlite3WalCallback(z) 0 #else -#define WAL_SAVEPOINT_NDATA 3 +#define WAL_SAVEPOINT_NDATA 4 /* Connection to a write-ahead log (WAL) file. ** There is one object of this type for each pager. |