Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Invalid
-
None
-
None
Description
If I follow the instructions from the README and set the test paths as follows, some of the IPC tests fail with "no such file or directory".
export PARQUET_TEST_DATA=../cpp/submodules/parquet-testing/data export ARROW_TEST_DATA=../testing/data
If I change them to absolute paths as follows then the tests pass:
export PARQUET_TEST_DATA=`pwd`/../cpp/submodules/parquet-testing/data export ARROW_TEST_DATA=`pwd`/../testing/data