summaryrefslogtreecommitdiff
path: root/system/db/content.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-11-02 00:14:32 -0700
committerSteve Manuel <nilslice@gmail.com>2016-11-02 00:14:32 -0700
commitd31212d0d147f2e727241005a62ca434c8e8a417 (patch)
tree1aab835957f720574c9c47d44082ce62e38704f2 /system/db/content.go
parent8ab68e3609c45b90dbc716b1b10db05f978bb96e (diff)
adding test fix for asc order
Diffstat (limited to 'system/db/content.go')
-rw-r--r--system/db/content.go2
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
}