Amemeda commented on code in PR #6430:
URL: https://github.com/apache/accumulo/pull/6430#discussion_r3431469487
##########
core/src/main/java/org/apache/accumulo/core/data/Column.java:
##########
@@ -139,7 +138,7 @@ public Column(byte[] columnFamily, byte[] columnQualifier,
byte[] columnVisibili
* @param tcol Thrift column
*/
public Column(TColumn tcol) {
- this(toBytes(tcol.columnFamily), toBytes(tcol.columnQualifier),
toBytes(tcol.columnVisibility));
+ this(tcol.getColumnFamily(), tcol.getColumnQualifier(),
tcol.getColumnVisibility());
Review Comment:
I had removed the toBytes() since after changing to the get methods, each
one errored on expected type, removing the toBytes cleared the errors
--
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]