aboutsummaryrefslogtreecommitdiff
path: root/errors.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-07-10 15:01:50 -0600
committerBen Johnson <benbjohnson@yahoo.com>2014-07-10 15:01:50 -0600
commit88c8709cb1ad82156361352a5c2e065db4f62bd8 (patch)
treeb78dec6e863807fe75c053920c9297152a1bb4b3 /errors.go
parentAllow freelist overflow. (diff)
downloaddedo-88c8709cb1ad82156361352a5c2e065db4f62bd8.tar.gz
dedo-88c8709cb1ad82156361352a5c2e065db4f62bd8.tar.xz
Remove ErrFreelistOverflow error.
Diffstat (limited to 'errors.go')
-rw-r--r--errors.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/errors.go b/errors.go
index 5b31ba0..aa504f1 100644
--- a/errors.go
+++ b/errors.go
@@ -36,10 +36,6 @@ var (
// ErrTxClosed is returned when committing or rolling back a transaction
// that has already been committed or rolled back.
ErrTxClosed = errors.New("tx closed")
-
- // ErrFreelistOverflow is returned when the total number of free pages
- // exceeds 65,536 and the freelist cannot hold any more.
- ErrFreelistOverflow = errors.New("freelist overflow")
)
// These errors can occur when putting or deleting a value or a bucket.