| 71 | using ReadableFile = ::arrow::io::ReadableFile; |
| 72 | |
| 73 | std::string data_file(const char* file) { |
| 74 | std::string dir_string(test::get_data_dir()); |
| 75 | std::stringstream ss; |
| 76 | ss << dir_string << "/" << file; |
| 77 | return ss.str(); |
| 78 | } |
| 79 | |
| 80 | std::string alltypes_plain() { return data_file("alltypes_plain.parquet"); } |
| 81 |
no test coverage detected