◆ CSVWriterState() [1/3]
50977 : flush_size(flush_size_p), stream(make_uniq<MemoryStream>(Allocator::Get(context), flush_size)) {
50978}
◆ CSVWriterState() [2/3]
50981 : flush_size(flush_size_p), stream(make_uniq<MemoryStream>(BufferAllocator::Get(db), flush_size)) {
50982}
◆ CSVWriterState() [3/3]
| duckdb::CSVWriterState::CSVWriterState |
( |
| ) |
|
50973 : flush_size(MemoryStream::DEFAULT_INITIAL_CAPACITY), stream(make_uniq<MemoryStream>()) {
50974}
◆ ~CSVWriterState()
| duckdb::CSVWriterState::~CSVWriterState |
( |
| ) |
|
50984 {
50985 if (stream && !Exception::UncaughtException()) {
50986
50987 D_ASSERT(stream->GetPosition() == 0);
50988 }
50989}
◆ Reset()
| void duckdb::CSVWriterState::Reset |
( |
| ) |
|
|
inline |
50855 {
50856 stream->Rewind();
50857 written_anything = false;
50858 }
The documentation for this struct was generated from the following file:
- external/duckdb/duckdb.cpp