mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-04 10:25:17 -06:00
Fix flipped sign in JsonCursor::NextValue
This commit is contained in:
@@ -135,7 +135,7 @@ func (j *JsonCursor) NextValue(ctx context.Context) (result []byte, err error) {
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
if cmp < 0 {
|
||||
if cmp >= 0 {
|
||||
break
|
||||
}
|
||||
parseChunk()
|
||||
|
||||
Reference in New Issue
Block a user