| 334 | } |
| 335 | |
| 336 | void add(double duration, size_t read_rows_inc, size_t read_bytes_inc, size_t result_rows_inc, size_t result_bytes_inc) |
| 337 | { |
| 338 | addWeighted(read_rows_inc, read_bytes_inc, result_rows_inc, result_bytes_inc, 1.0); |
| 339 | sample(duration); |
| 340 | } |
| 341 | }; |
| 342 | |
| 343 | using MultiStats = std::vector<std::shared_ptr<Stats>>; |
no outgoing calls
no test coverage detected