(id: &str)
| 3865 | } |
| 3866 | |
| 3867 | fn read_pglite_benchmark_sql(id: &str) -> Result<String> { |
| 3868 | let path = Path::new(PGLITE_BENCHMARK_SQL_DIR).join(format!("benchmark{id}.sql")); |
| 3869 | fs::read_to_string(&path) |
| 3870 | .with_context(|| format!("read PGlite benchmark SQL {}", path.display())) |
| 3871 | } |
| 3872 | |
| 3873 | fn run_indexed_update_diagnostic_case( |
| 3874 | name: &'static str, |
no test coverage detected