diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-11 22:51:01 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-11 22:51:01 -0700 |
commit | ee24437bfcb34dbf2549ecd26adc972c1eb7dc16 (patch) | |
tree | 5fe178109b3ece4a4d66fdc40cfbd70e52f48850 /bucket.go | |
parent | DB.Open(), pages, and meta. (diff) | |
download | dedo-ee24437bfcb34dbf2549ecd26adc972c1eb7dc16.tar.gz dedo-ee24437bfcb34dbf2549ecd26adc972c1eb7dc16.tar.xz |
Initial db.open.
Diffstat (limited to 'bucket.go')
-rw-r--r-- | bucket.go | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -7,12 +7,12 @@ package bolt // TODO: #define MAIN_DBI 1 type Bucket struct { - pad uint32 - flags uint16 - depth uint16 - branches pgno - leafs pgno - overflows pgno - entries uint64 - root pgno + pad uint32 + flags uint16 + depth uint16 + branches pgno + leafs pgno + overflows pgno + entries uint64 + root pgno } |