summaryrefslogtreecommitdiff
path: root/system/db
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-11-02 00:11:59 -0700
committerSteve Manuel <nilslice@gmail.com>2016-11-02 00:11:59 -0700
commit8ab68e3609c45b90dbc716b1b10db05f978bb96e (patch)
treea0fed41810b0a25f72a50b4177a467561d28674e /system/db
parent4de65aa8ba77b10f847e0436bc624da3c39fe5d7 (diff)
adding test fix for asc order
Diffstat (limited to 'system/db')
-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 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
}