File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
cpp/src/arrow/flight/sql/odbc/tests Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -399,6 +399,9 @@ jobs:
399399 ARCHERY_DOCKER_PASSWORD : ${{ secrets.DOCKERHUB_TOKEN }}
400400 continue-on-error : true
401401 run : archery docker push ${{ matrix.image }}
402+ - name : Build
403+ run : |
404+ ci/scripts/cpp_build.sh $(pwd) $(pwd)/build
402405
403406 odbc-macos :
404407 needs : check-labels
Original file line number Diff line number Diff line change @@ -491,7 +491,7 @@ bool WriteDSN(Connection::ConnPropertyMap properties) {
491491
492492 std::string driver = config.Get (FlightSqlConnection::DRIVER);
493493 std::wstring w_driver = arrow::util::UTF8ToWideString (driver).ValueOr (L" " );
494- return RegisterDsn (config, static_cast <LPCWSTR>(w_driver.c_str ()));
494+ return RegisterDsn (config, reinterpret_cast <LPCWSTR>(w_driver.c_str ()));
495495}
496496
497497std::wstring GetStringColumnW (SQLHSTMT stmt, int col_id) {
You can’t perform that action at this time.
0 commit comments