diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-02 00:11:59 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-02 00:11:59 -0700 |
commit | 8ab68e3609c45b90dbc716b1b10db05f978bb96e (patch) | |
tree | a0fed41810b0a25f72a50b4177a467561d28674e /system/db | |
parent | 4de65aa8ba77b10f847e0436bc624da3c39fe5d7 (diff) |
adding test fix for asc order
Diffstat (limited to 'system/db')
-rw-r--r-- | system/db/content.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/db/content.go b/system/db/content.go index a3a4da1..30010e8 100644 --- a/system/db/content.go +++ b/system/db/content.go @@ -246,7 +246,7 @@ func Query(namespace string, opts QueryOptions) [][]byte { continue } - if cur >= start { + if cur <= start { break } |