diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-30 00:11:46 -0500 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-30 00:11:46 -0500 |
commit | 149d48fb9e3e8147cf0bce84a4e11164ac9cdbf3 (patch) | |
tree | 2616c762651a8e516e348c3741d502a1f68ffd16 /meta.go | |
parent | Add freelist page type. (diff) | |
download | dedo-149d48fb9e3e8147cf0bce84a4e11164ac9cdbf3.tar.gz dedo-149d48fb9e3e8147cf0bce84a4e11164ac9cdbf3.tar.xz |
Fix leaf/branch deserialization.
Diffstat (limited to 'meta.go')
-rw-r--r-- | meta.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ var ( VersionMismatchError = &Error{"version mismatch", nil} ) -const magic uint32 = 0xC0DEC0DE +const magic uint32 = 0xDEADC0DE const version uint32 = 1 type meta struct { @@ -13,8 +13,8 @@ type meta struct { version uint32 pageSize uint32 pgid pgid - txnid txnid free pgid + txnid txnid sys bucket } |