From e68bc0b4530475503afb34956dfb915673af919c Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Sat, 15 Feb 2014 10:23:00 -0700 Subject: Add bucket sequence. --- buckets.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'buckets.go') diff --git a/buckets.go b/buckets.go index bb4b960..6d9f27c 100644 --- a/buckets.go +++ b/buckets.go @@ -63,7 +63,10 @@ func (b *buckets) read(p *page) { // Associate keys and items. for index, key := range keys { - b.items[key] = &bucket{items[index].root} + b.items[key] = &bucket{ + root: items[index].root, + sequence: items[index].sequence, + } } } -- cgit v1.2.3