diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2018-08-06 12:41:36 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2018-08-06 12:41:36 +0200 |
| commit | 027867071a19a01889884cbd720f319152c283c0 (patch) | |
| tree | 98464b206ef883a7867d8b8e59869a9c22e05d9a | |
| parent | 04a92024cd4ec0bd14116a6aaeb170a2ecfac9bb (diff) | |
| download | allocbench-027867071a19a01889884cbd720f319152c283c0.tar.gz allocbench-027867071a19a01889884cbd720f319152c283c0.zip | |
fix mysql memory stats collecting
| -rw-r--r-- | mysql.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -124,7 +124,7 @@ class Benchmark_MYSQL( Benchmark ): heap_size = {} for m in self.server.memory_maps(): if "[heap]" in m: - p_size["heap_start"] = m.size + heap_size["heap_start"] = m.size for i, thread in enumerate(self.nthreads): print(tname + ":", i + 1, "of", n, "\r", end='') |
