Github user ankitsinghal commented on a diff in the pull request:

    https://github.com/apache/phoenix/pull/154#discussion_r58109985
  
    --- Diff: 
phoenix-core/src/main/java/org/apache/phoenix/execute/LiteralResultIterationPlan.java
 ---
    @@ -85,7 +85,8 @@ public void close() throws SQLException {
     
                 @Override
                 public Tuple next() throws SQLException {
    -                while (!this.closed && (offset != null && count++ < 
offset) && tupleIterator.hasNext()) {
    +                while (!this.closed && (offset != null && count < offset) 
&& tupleIterator.hasNext()) {
    +                    count++;
    --- End diff --
    
    Ah, I was in a notion that I updated limit to limit+offset already.
    Thanks for catching it, I have corrected it now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to