Skip to content

Commit

Permalink
NIFI-14261 Corrected the overall display of another example of multil…
Browse files Browse the repository at this point in the history
…ine csv records to be displayed across multiple lines.
  • Loading branch information
dan-s1 committed Feb 17, 2025
1 parent 9adb4d3 commit 992d680
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ encompasses all fields that have been encountered.
A common concern when inferring schemas is how to handle the condition of two values that have different types. For
example, consider a FlowFile with the following two records:

`name, age John, 8 Jane, Ten`
```
name, age
John, 8
Jane, Ten
```

It is clear that the "name" field will be inferred as a STRING type. However, how should we handle the "age" field?
Should the field be an CHOICE between INT and STRING? Should we prefer LONG over INT? Should we just use a STRING?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ A common concern when inferring schemas is how to handle the condition of two va
example, consider a FlowFile with the following two records:

```
name, age John, 8 Jane, Ten
name, age
John, 8
Jane, Ten
```

It is clear that the "name" field will be inferred as a STRING type. However, how should we handle the "age" field?
Expand Down

0 comments on commit 992d680

Please sign in to comment.