We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec37ebe commit 4a61bbeCopy full SHA for 4a61bbe
src/Client/ClientBase.h
@@ -104,6 +104,13 @@ class ClientBase
104
// std::vector<char> vec(buf.begin(), buf.end());
105
return query_result_memory;
106
}
107
+
108
+ std::span<char> getQueryOutputSpan()
109
+ {
110
+ auto size = query_result_buf->count();
111
+ return std::span<char>(query_result_memory->begin(), size);
112
+ }
113
114
size_t getProcessedRows() const { return processed_rows; }
115
size_t getProcessedBytes() const { return processed_bytes; }
116
double getElapsedTime() const { return progress_indication.elapsedSeconds(); }
0 commit comments