mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
dbms: benchmark: fixed error [#METR-2944].
This commit is contained in:
parent
cfac18bdd4
commit
fed3d5ec68
@ -273,7 +273,7 @@ private:
|
||||
<< "result MiB/s: " << (info.result_bytes / seconds / 1048576) << "."
|
||||
<< std::endl;
|
||||
|
||||
for (size_t percent = 0; percent < 90; percent += 10)
|
||||
for (size_t percent = 0; percent <= 90; percent += 10)
|
||||
std::cerr << percent << "%\t" << info.sampler.quantileInterpolated(percent / 100.0) << " sec." << std::endl;
|
||||
|
||||
std::cerr << "95%\t" << info.sampler.quantileInterpolated(0.95) << " sec." << std::endl;
|
||||
|
Loading…
Reference in New Issue
Block a user