(file: &str)
| 562 | use std::sync::Arc; |
| 563 | |
| 564 | fn arrow_test_data(file: &str) -> String { |
| 565 | let base = |
| 566 | std::env::var("ARROW_TEST_DATA").unwrap_or_else(|_| "../testing/data".to_string()); |
| 567 | format!("{}/{}", base, file) |
| 568 | } |
| 569 | |
| 570 | fn get_alltypes_schema() -> SchemaRef { |
| 571 | get_alltypes_schema_with_tz("+00:00") |
no outgoing calls