◆ ~ReadStream()
| virtual duckdb::ReadStream::~ReadStream |
( |
| ) |
|
|
inlinevirtual |
◆ ReadData()
| virtual void duckdb::ReadStream::ReadData |
( |
data_ptr_t |
buffer, |
|
|
idx_t |
read_size |
|
) |
| |
|
pure virtual |
◆ Read() [1/2]
| T duckdb::ReadStream::Read |
( |
| ) |
|
|
inline |
57579 {
57580 return Read<T>(QueryContext());
57581 }
◆ Read() [2/2]
57584 {
57585 static_assert(std::is_standard_layout<T>(), "Read element must be a standard layout data type");
57586 T value;
57587 ReadData(context, data_ptr_cast(&value), sizeof(T));
57588 return value;
57589 }
The documentation for this class was generated from the following file: