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

    https://github.com/apache/phoenix/pull/154#discussion_r57993753
  
    --- 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 --
    
    What I meant was this "count++" doesn't seem to work with LIMIT(below) 
together. LIMIT should be number of rows returned starting from the OFFSET row, 
right?


---
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