()
| 41 | } |
| 42 | |
| 43 | fn create_context() -> Result<Arc<Mutex<SessionContext>>> { |
| 44 | let ctx = SessionContext::new(); |
| 45 | Ok(Arc::new(Mutex::new(ctx))) |
| 46 | } |
| 47 | |
| 48 | fn generate_test_file() -> TestCsvFile { |
| 49 | let write_location = std::env::current_dir() |
searching dependent graphs…