(self)
| 3958 | |
| 3959 | impl SpeedSqlSource { |
| 3960 | fn source_model(self) -> &'static str { |
| 3961 | match self { |
| 3962 | SpeedSqlSource::Generated => { |
| 3963 | "Mirrors the two PGlite benchmark families documented at https://pglite.dev/benchmarks: trimmed-average CRUD round-trip microbenchmarks and a SQLite speedtest-style SQL suite. The speed suite is generated locally instead of vendoring PGlite's generated SQL files." |
| 3964 | } |
| 3965 | SpeedSqlSource::PgliteVendored => { |
| 3966 | "Mirrors the two PGlite benchmark families documented at https://pglite.dev/benchmarks: trimmed-average CRUD round-trip microbenchmarks and the exact SQL files from assets/checkouts/pglite/packages/benchmark/src." |
| 3967 | } |
| 3968 | } |
| 3969 | } |
| 3970 | } |
| 3971 | |
| 3972 | fn run_rtt_direct_benchmark(iterations: usize) -> Result<BenchmarkRun> { |
no outgoing calls
no test coverage detected