commit 8845343df5568cc6a562ce10ff467174165c5331 from: Sergey Bronnikov via: Sergey Bronnikov date: Wed Feb 15 08:26:23 2017 UTC Add absent append() method to PgStatStore, fixes #1 commit - 4a804cdc299a60ebf373cc7015907b620ff921fb commit + 8845343df5568cc6a562ce10ff467174165c5331 blob - bea20349d0c10f7f12f67c3f948db9df698e2532 blob + 8e22da0602ac231be0fc7ed4ea629ed1c8ab47db --- pg-stat.py +++ pg-stat.py @@ -95,6 +95,9 @@ class PgStatStore: self.store[c] = ret[n] n += 1 + def append(self, column): + self.cols.append(column) + class PgStatStoreBigUserTables(PgStatStore): def __init__(self, cols): self.cols = cols