Cleanup, no logic changes.

master
jdl 2023-12-04 20:25:37 +01:00
parent c2a1a7f247
commit b251368b09
2 changed files with 3 additions and 3 deletions

View File

@ -13,13 +13,13 @@ type Index struct {
}
func NewIndex(f *File) (*Index, error) {
maxPage, err := f.maxPage()
firstPage, err := f.pageCount()
if err != nil {
return nil, err
}
idx := &Index{
fList: newFreeList(maxPage),
fList: newFreeList(firstPage),
aList: *newAllocList(),
seen: map[[2]uint64]struct{}{},
mask: []bool{},

View File

@ -134,7 +134,7 @@ func (pf *File) writePage(page dataPage, id uint64) error {
// Reading
// ----------------------------------------------------------------------------
func (pf *File) maxPage() (uint64, error) {
func (pf *File) pageCount() (uint64, error) {
fi, err := pf.f.Stat()
if err != nil {
return 0, errs.IO.WithErr(err)