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

    https://github.com/apache/nifi/pull/2570#discussion_r176437278
  
    --- Diff: 
nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/record/util/DataTypeUtils.java
 ---
    @@ -474,6 +555,14 @@ public static String toString(final Object value, 
final String format) {
                 return Arrays.toString((Object[]) value);
             }
     
    +        if (value instanceof byte[]) {
    +            return new String((byte[]) value, charset);
    +        }
    +        if (value instanceof ByteBuffer) {
    --- End diff --
    
    Same as above.


---

Reply via email to