(path: &Path)
| 1567 | } |
| 1568 | |
| 1569 | async fn parse_benchmark_file(path: &Path) -> Result<SqlBenchmark> { |
| 1570 | let ctx = SessionContext::new(); |
| 1571 | let path_string = path.to_string_lossy().into_owned(); |
| 1572 | SqlBenchmark::new(&ctx, &path_string, "/tmp").await |
| 1573 | } |
| 1574 | |
| 1575 | async fn parse_benchmark(contents: &str) -> Result<SqlBenchmark> { |
| 1576 | let temp_dir = tempdir().expect("failed to create benchmark test directory"); |
no test coverage detected
searching dependent graphs…