From 2cec99fa3b5cde5055a3834e33cb77fa4c33a4ac Mon Sep 17 00:00:00 2001 From: Michael Avila Date: Fri, 22 Mar 2019 08:17:29 -0700 Subject: [PATCH] Add note for where implementation may need to go --- mount/mount.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mount/mount.go b/mount/mount.go index 900a635..a46118b 100644 --- a/mount/mount.go +++ b/mount/mount.go @@ -139,6 +139,7 @@ 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 { @@ -146,6 +147,7 @@ func (h *querySet) next() (query.Result, bool) { continue } } + // can limit and offset be implemented here? } heap.Fix(h, 0) return next, true