MikeThomsen commented on a change in pull request #4104: NIFI-7159
URL: https://github.com/apache/nifi/pull/4104#discussion_r388006605
##########
File path:
nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/PutHBaseRecord.java
##########
@@ -341,6 +341,8 @@ protected PutFlowFile createPut(ProcessSession session,
ProcessContext context,
case BOOLEAN:
retVal = clientService.toBytes(record.getAsBoolean(field));
break;
+ case DECIMAL:
+ // Decimal to be treated as the same as double
Review comment:
It should be broken down into a byte array like the other types.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services