(benchmark: &SqlBenchmark)
| 1601 | } |
| 1602 | |
| 1603 | fn formatted_last_results(benchmark: &SqlBenchmark) -> Vec<Vec<String>> { |
| 1604 | format_record_batches( |
| 1605 | benchmark |
| 1606 | .last_results |
| 1607 | .as_ref() |
| 1608 | .expect("last results should be set"), |
| 1609 | ) |
| 1610 | .expect("results should format") |
| 1611 | } |
| 1612 | |
| 1613 | fn read_all_files_in_dir(path: &Path) -> String { |
| 1614 | let mut entries = fs::read_dir(path) |
nothing calls this directly
no test coverage detected
searching dependent graphs…