| 53 | } |
| 54 | |
| 55 | void PostArrowUtilError(arrow::Status error_status) { |
| 56 | std::string error_msg = error_status.message(); |
| 57 | CONVERT_SQLWCHAR_STR(werror_msg, error_msg); |
| 58 | |
| 59 | PostError(ODBC_ERROR_GENERAL_ERR, |
| 60 | const_cast<LPWSTR>(reinterpret_cast<LPCWSTR>(werror_msg.c_str()))); |
| 61 | } |
| 62 | |
| 63 | void PostLastInstallerError() { |
| 64 | #define BUFFER_SIZE (1024) |
no test coverage detected