raulcd commented on issue #49767: URL: https://github.com/apache/arrow/issues/49767#issuecomment-4269275121
I've been able to reproduce pretty consistently locally (5 failures out of 6) with: ```bash UBUNTU=24.04 archery docker run -e ARROW_BUILD_TYPE=DEBUG ubuntu-cpp-odbc ``` I've also reproduced with the underlying docker command: ``` UBUNTU=24.04 docker compose run --rm -e ARROW_BUILD_TYPE=DEBUG ubuntu-cpp-odbc ``` But when I try to run an interactive shell in the container with: ```bash $ UBUNTU=24.04 docker compose run -it --rm -e ARROW_BUILD_TYPE=DEBUG ubuntu-cpp-odbc /bin/bash ``` and execute the build, install driver and test using the same command specified on the `compose.yaml` file: ```bash root@3dad19853bc0:/# /arrow/ci/scripts/cpp_build.sh /arrow /build ... root@3dad19853bc0:/# sudo /arrow/cpp/src/arrow/flight/sql/odbc/install/unix/install_odbc.sh /usr/local/lib/libarrow_flight_sql_odbc.so Adding [Apache Arrow Flight SQL ODBC Driver] to odbcinst.ini... root@3dad19853bc0:/# /arrow/ci/scripts/cpp_test.sh /arrow /build ... 100% tests passed, 0 tests failed out of 56 Label Time Summary: arrow-compute-tests = 102.32 sec*proc (15 tests) arrow-tests = 82.14 sec*proc (38 tests) arrow_flight = 7.66 sec*proc (2 tests) arrow_flight_sql = 1.44 sec*proc (1 test) filesystem = 1.90 sec*proc (1 test) unittest = 193.55 sec*proc (56 tests) ``` I can't seem to reproduce no matter how many times I try. I have tried to debug and understand the crash but I haven't been able to advance much on it. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
