Skip to content

Commit

Permalink
Add note for where implementation may need to go
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavila committed Mar 22, 2019
1 parent 7a8c70e commit 2cec99f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mount/mount.go
Expand Up @@ -139,13 +139,15 @@ func (h *querySet) next() (query.Result, bool) {
}
head := h.heads[0]
next := head.next

for head.advance() {
if head.next.Error == nil {
for _, f := range h.query.Filters {
if !f.Filter(head.next.Entry) {
continue
}
}
// can limit and offset be implemented here?
}
heap.Fix(h, 0)
return next, true
Expand Down

0 comments on commit 2cec99f

Please sign in to comment.