Skip to content

Commit

Permalink
Merge pull request #636 from Alex-Monahan/new_line
Browse files Browse the repository at this point in the history
document new_line csv reader option
  • Loading branch information
Alex-Monahan authored Mar 15, 2023
2 parents 91a2431 + 545799a commit ee8ae70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/data/csv/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Below are parameters that can be passed in to the CSV reader.
| `ignore_errors` | Option to ignore any parsing errors encountered - and instead ignore rows with errors. | bool | false |
| `max_line_size` | The maximum line size in bytes | bigint | 2097152 |
| `names` | The column names as a list. [Example here](tips#provide-names-if-the-file-does-not-contain-a-header). | varchar[] | `(empty)` |
| `new_line` | Set the new line character(s) in the file. Options are `'\r'`,`'\n'`, or `'\r\n'`. | varchar | `(empty)` |
| `normalize_names` | Boolean value that specifies whether or not column names should be normalized, removing any non-alphanumeric characters from them. | bool | false |
| `nullstr` | Specifies the string that represents a NULL value. | varchar | `(empty)` |
| `parallel` | Whether or not the experimental parallel CSV reader is used. | bool | false |
Expand Down

0 comments on commit ee8ae70

Please sign in to comment.