zeroshade commented on code in PR #2918: URL: https://github.com/apache/arrow-adbc/pull/2918#discussion_r2157431123
########## c/driver_manager/adbc_driver_manager.cc: ########## @@ -114,7 +130,186 @@ struct OwnedError { } }; +#ifdef _WIN32 +using char_type = wchar_t; + +std::string Utf8Encode(const std::wstring& wstr) { + if (wstr.empty()) return std::string(); + int size_needed = WideCharToMultiByte( + CP_UTF8, 0, &wstr[0], static_cast<int>(wstr.size()), NULL, 0, NULL, NULL); + std::string str_to(size_needed, 0); + WideCharToMultiByte(CP_UTF8, 0, &wstr[0], static_cast<int>(wstr.size()), &str_to[0], + size_needed, NULL, NULL); + return str_to; +} Review Comment: latest change added a test with a non-ascii file path being passed through the environment var -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org