|
|
string | newline = "\n" |
| | The newline string to write.
|
| |
|
idx_t | flush_size = 4096ULL * 8ULL |
| | The size of the CSV file (in bytes) that we buffer before we flush it to disk.
|
| |
|
vector< bool > | requires_quotes |
| | For each byte whether the CSV file requires quotes when containing the byte.
|
| |
|
CSVNewLineMode | newline_writing_mode = CSVNewLineMode::WRITE_BEFORE |
| | How to write newlines.
|
| |
◆ CSVWriterOptions() [1/2]
| duckdb::CSVWriterOptions::CSVWriterOptions |
( |
const string & |
delim, |
|
|
const char & |
quote, |
|
|
const string & |
write_newline |
|
) |
| |
50991 {
50998
50999 if (!write_newline.empty()) {
51000 newline = TransformNewLine(write_newline);
51001 }
51002}
string newline
The newline string to write.
Definition duckdb.cpp:50840
vector< bool > requires_quotes
For each byte whether the CSV file requires quotes when containing the byte.
Definition duckdb.cpp:50844
◆ CSVWriterOptions() [2/2]
51005 : CSVWriterOptions(options.dialect_options.state_machine_options.delimiter.GetValue(),
51006 options.dialect_options.state_machine_options.quote.GetValue(), options.write_newline) {
51007}
The documentation for this struct was generated from the following file:
- external/duckdb/duckdb.cpp