apurtell commented on code in PR #2503:
URL: https://github.com/apache/phoenix/pull/2503#discussion_r3377054376


##########
phoenix-core-client/src/main/java/org/apache/phoenix/iterate/ExplainTable.java:
##########
@@ -449,55 +450,13 @@ private void appendPKColumnValue(StringBuilder buf, 
byte[] range, Boolean isNull
     }
   }
 
+  @SuppressWarnings("rawtypes")
   private Long getViewIndexValue(PDataType type, byte[] range) {
     boolean useLongViewIndex = 
MetaDataUtil.getViewIndexIdDataType().equals(type);
     Object s = type.toObject(range);
     return (useLongViewIndex ? (Long) s : (Short) s) + Short.MAX_VALUE + 2;
   }
 
-  private static class RowKeyValueIterator implements Iterator<byte[]> {

Review Comment:
   Unused code.



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