aboutsummaryrefslogtreecommitdiff
path: root/src/wal.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2010-06-02 18:59:03 +0000
committerdan <dan@noemail.net>2010-06-02 18:59:03 +0000
commit6e6bd5658f1fa8ab3780a309b42acab4de00e7d9 (patch)
tree52f0cf34970165226726328bb1707a0408269b8e /src/wal.h
parent10ec894c3a07e21c164e5589324165eba01ea1bd (diff)
downloadsqlite-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wal.h b/src/wal.h
index 32aade1d0..34710a408 100644
--- a/src/wal.h
+++ b/src/wal.h
@@ -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.