| 89 | } |
| 90 | |
| 91 | unique_ptr<MaterializedQueryResult> Query(const string &query) { |
| 92 | auto conn_wrapper = static_cast<DuckDBAdbcConnectionWrapper *>(adbc_connection.private_data); |
| 93 | auto cconn = reinterpret_cast<Connection *>(conn_wrapper->connection); |
| 94 | return cconn->Query(query); |
| 95 | } |
| 96 | |
| 97 | ArrowArrayStream &QueryArrow(const string &query) { |
| 98 | if (arrow_stream.release) { |
no outgoing calls
no test coverage detected