Skip to content

Commit

Permalink
Fix result duplication with order by @Rid desc
Browse files Browse the repository at this point in the history
Resolves: #5298
  • Loading branch information
luigidellaquila committed Nov 13, 2015
1 parent b9f989f commit f44bc79
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ public boolean hasPrevious() {
// CLUSTER EXHAUSTED, TRY WITH THE PREVIOUS ONE
currentClusterIdx--;

if (currentClusterIdx < 0)
break;

updateClusterRange();
}

Expand Down

0 comments on commit f44bc79

Please sign in to comment.