mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Merge pull request #138 from benbjohnson/frame-fragment-lock
Fix unlocked Frame.fragments accessor.
This commit is contained in:
commit
e92228d641
1 changed files with 1 additions and 1 deletions
2
index.go
2
index.go
|
|
@ -252,7 +252,7 @@ func (i *Index) Fragment(db, frame string, slice uint64) *Fragment {
|
|||
if f == nil {
|
||||
return nil
|
||||
}
|
||||
return f.fragment(slice)
|
||||
return f.Fragment(slice)
|
||||
}
|
||||
|
||||
// CreateFragmentIfNotExists returns the fragment for a database, frame & slice.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue