mapleFU commented on PR #43861:
URL: https://github.com/apache/arrow/pull/43861#issuecomment-2314589108
Sorry, would you mind try something like below?
```c++
std::string get_bad_data_dir() {
// PARQUET_TEST_DATA should point to
ARROW_HOME/cpp/submodules/parquet-testing/data
// so need to reach one folder up to access the "bad_data" folder.
std::string data_dir(get_data_dir());
std::stringstream ss;
ss << data_dir << "/../bad_data";
return ss.str();
}
```
If cannot touch data, can we handle write a test ourselve using go?
--
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]