(self, t1, explain)
| 56 | return int(sout.split(maxsplit=1)[0]) |
| 57 | |
| 58 | def print_mtime(self, t1, explain): |
| 59 | mtime = clock() - t1 |
| 60 | print(f"{explain}: {mtime:.6f}") |
| 61 | print(f"Krows/s: {self.nrows / 1000 / mtime:.6f}") |
| 62 | |
| 63 | def print_qtime(self, colname, ltimes): |
| 64 | qtime1 = ltimes[0] # First measured time |