Function arrow::util::test_util::arrow_test_data[][src]

pub fn arrow_test_data() -> String
Expand description

Returns the arrow test data directory, which is by default stored in a git submodule rooted at arrow/testing/data.

The default can be overridden by the optional environment variable ARROW_TEST_DATA

panics when the directory can not be found.

Example:

let testdata = arrow::util::test_util::arrow_test_data();
let csvdata = format!("{}/csv/aggregate_test_100.csv", testdata);
assert!(std::path::PathBuf::from(csvdata).exists());