diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-02 00:14:32 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-02 00:14:32 -0700 |
commit | d31212d0d147f2e727241005a62ca434c8e8a417 (patch) | |
tree | 1aab835957f720574c9c47d44082ce62e38704f2 /system/db/content.go | |
parent | 8ab68e3609c45b90dbc716b1b10db05f978bb96e (diff) |
adding test fix for asc order
Diffstat (limited to 'system/db/content.go')
-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 30010e8..860f830 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 } |