Skip to content

Commit

Permalink
Doc: Benchmark: auto fill systems list from results (ClickHouse#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
proller authored and alexey-milovidov committed Jan 27, 2017
1 parent bff12c5 commit cab5d44
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion doc/benchmark.html
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,15 @@

var current_data_size = 1000000000;

var systems = ["ClickHouse", "Vertica", "MemSQL", "InfiniDB", "MonetDB", "Infobright", "Hive", "MySQL", "Vertica (x3)", "Vertica (x6)", "Greenplum", "Greenplum(x2)"];
var systems = [];
var systems_uniq = {};
for (r in results) {
if (systems_uniq[results[r].system])
continue;
systems_uniq[results[r].system] = 1;
systems.push(results[r].system);
}

var current_systems = ["ClickHouse", "Vertica", "InfiniDB", "Hive"];

var runs = ["first (cold cache)", "second", "third"];
Expand Down

0 comments on commit cab5d44

Please sign in to comment.