| 34 | #include "arrow/util/logging.h" |
| 35 | |
| 36 | SQLRETURN SQL_API SQLAllocHandle(SQLSMALLINT type, SQLHANDLE parent, SQLHANDLE* result) { |
| 37 | return arrow::flight::sql::odbc::SQLAllocHandle(type, parent, result); |
| 38 | } |
| 39 | |
| 40 | SQLRETURN SQL_API SQLAllocEnv(SQLHENV* env) { |
| 41 | return arrow::flight::sql::odbc::SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, env); |
no outgoing calls
no test coverage detected