Merge pull request #315 from benbjohnson/max-alloc

Increase max array pointer size to 2GB.
master
Ben Johnson 2015-02-26 21:15:20 -07:00
commit 1d9315e35b
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ import (
const pageHeaderSize = int(unsafe.Offsetof(((*page)(nil)).ptr))
const maxAllocSize = 0xFFFFFFF
const maxAllocSize = 0x7FFFFFFF
const minKeysPerPage = 2
const branchPageElementSize = int(unsafe.Sizeof(branchPageElement{}))