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

    https://github.com/apache/phoenix/pull/147#discussion_r49925628
  
    --- Diff: 
phoenix-core/src/main/java/org/apache/phoenix/iterate/BaseResultIterators.java 
---
    @@ -490,15 +492,35 @@ private static String toString(List<byte[]> gps) {
             }
             List<List<Scan>> parallelScans = 
Lists.newArrayListWithExpectedSize(stopIndex - regionIndex + 1);
             
    -        byte[] currentKey = startKey;
    -        int guideIndex = currentKey.length == 0 ? 0 : 
getIndexContainingInclusive(gps, currentKey);
    -        int gpsSize = gps.size();
    +        ImmutableBytesWritable currentKey = new 
ImmutableBytesWritable(startKey, 0, startKey.length);
    --- End diff --
    
    Minor nit: you can just do this instead:
    
        ImmutableBytesWritable currentKey = new 
ImmutableBytesWritable(startKey);


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