You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by "Ed Berezitsky (JIRA)" <ji...@apache.org> on 2018/12/06 01:35:00 UTC

[jira] [Created] (NIFI-5874) CSVRecordSetWriter inject transformed backslash sequences from input

Ed Berezitsky created NIFI-5874:
-----------------------------------

             Summary: CSVRecordSetWriter inject transformed backslash sequences from input
                 Key: NIFI-5874
                 URL: https://issues.apache.org/jira/browse/NIFI-5874
             Project: Apache NiFi
          Issue Type: Bug
          Components: Extensions
    Affects Versions: 1.8.0
            Reporter: Ed Berezitsky


If there is backslash sequence (like \t, \n, etc) in the input, CSVRecordSetWriter transforms them into actual characters (new line, tab, etc) in output record.

For example, input record:

```

case,a,a1
period,=\t=,-

```

Update Record with `/a1: /a` (just copy value from one field to another)

JsonRecordSetWriter will produce:

```

[\{"case":"period","a":"=\t=","a1":"=\t="}]

```

while CSVRecordSetWriter will produce:

```

case,a,a1
period,= =,= =

```

there is a actual "tab" in between "="

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)