simonbence commented on a change in pull request #4223:
URL: https://github.com/apache/nifi/pull/4223#discussion_r420183429
##########
File path:
nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/record/RecordFieldType.java
##########
@@ -72,6 +72,11 @@
*/
DOUBLE("double", FLOAT),
+ /**
+ * A big decimal field type. Fields of this type use a {@code
java.math.BigDecimal} value.
+ */
+ BIGDECIMAL("bigdecimal", FLOAT, DOUBLE),
Review comment:
I was unluckily looking for BigInt enum usage instead of usage of the
whole RecordFieldType. I added them, thank you for finding this. Also, it's a
question for me if BigInt should be explicitly handled in these cases.
----------------------------------------------------------------
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]