(self, *args, **kwargs)
| 62 | Pgbouncer database is a virtual database with its own set of commands.""" |
| 63 | |
| 64 | def __init__(self, *args, **kwargs): |
| 65 | self.protocol_error = False |
| 66 | self.protocol_message = "" |
| 67 | super().__init__(*args, **kwargs) |
| 68 | |
| 69 | def __iter__(self): |
| 70 | if self.protocol_error: |