From a1f43f4d60bf434baebf13b4810e5db4916baec5 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Sat, 1 Mar 2014 09:13:59 -0700 Subject: Allow reads of unflushed nodes. This commit allows cursors to read updated values from within the RWTransaction. --- page.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'page.go') diff --git a/page.go b/page.go index 77a31e4..5b60c4d 100644 --- a/page.go +++ b/page.go @@ -33,12 +33,6 @@ type page struct { ptr uintptr } -// pageElementRef represents a reference to an element on a given page. -type pageElementRef struct { - page *page - index uint16 -} - // typ returns a human readable page type string used for debugging. func (p *page) typ() string { if (p.flags & branchPageFlag) != 0 { -- cgit v1.2.3