virajjasani commented on PR #2199:
URL: https://github.com/apache/phoenix/pull/2199#issuecomment-2998876346

   I just skimmed through the logic to cross verify. HBase throws 
ArrayIndexOutOfBoundsException if we use `setOperationStatus()` with index > 0 
for single row.
   
   ```
     private int getAbsoluteIndex(int index) {
       if (index < 0 || this.firstIndex + index >= this.lastIndexExclusive) {
         throw new ArrayIndexOutOfBoundsException(index);
       }
       return this.firstIndex + index;
     }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to