summaryrefslogtreecommitdiff
path: root/report.sql
blob: 0504799f94316d69f7ecc3c165bb1c6d97b068a6 (plain)
1
2
3
4
5
6
7
8
9
SELECT
  set,scale,test,script,clients,workers,
  round(tps) AS tps,
  round(1000*avg_latency)/1000 AS avg_latency,
  round(1000*percentile_90_latency)/1000 AS "90%<",
  1000*round(max_latency)/1000 AS max_latency,
  trans
FROM tests
ORDER BY set,scale,script,clients,test;