aboutsummaryrefslogtreecommitdiff
path: root/mysql.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2018-08-13 22:44:14 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2018-08-13 22:44:14 +0200
commit0e701f823c97e7c68da34ca19f544b47bb066824 (patch)
tree37fde2e9db78ea0ae19092811947b503ae4277ac /mysql.py
parent063be4c23a572f1954874928df797cb1bd04f1ae (diff)
downloadallocbench-0e701f823c97e7c68da34ca19f544b47bb066824.tar.gz
allocbench-0e701f823c97e7c68da34ca19f544b47bb066824.zip
fix mysql
Diffstat (limited to 'mysql.py')
-rw-r--r--mysql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql.py b/mysql.py
index 9baf4e3..9d3811c 100644
--- a/mysql.py
+++ b/mysql.py
@@ -249,7 +249,7 @@ class Benchmark_MYSQL( Benchmark ):
for mid, measures in self.results.items():
if mid[0] == "chattymalloc":
- hist = [(n, s) for s,n measures[0]["hist"].items()]
+ hist = [(n, s) for s,n in measures[0]["hist"].items()]
hist.sort()
print("Histogram for", mid[1], "threads:")
print(hist)