(self, t1, explain)
| 63 | return int(line.split()[0]) |
| 64 | |
| 65 | def print_mtime(self, t1, explain): |
| 66 | mtime = clock() - t1 |
| 67 | print(f"{explain}: {mtime:.6f}") |
| 68 | print(f"Krows/s: {self.nrows / 1000 / mtime:.6f}") |
| 69 | |
| 70 | def print_db_sizes(self, init, filled): |
| 71 | array_size = (filled - init) / 1024 |