(self)
| 77 | return super().fetchall() |
| 78 | |
| 79 | def fetchone(self): |
| 80 | if self.protocol_error: |
| 81 | return (self.protocol_message,) |
| 82 | return super().fetchone() |
| 83 | |
| 84 | # def mogrify(self, query, params): |
| 85 | # args = [Literal(v).as_string(self.connection) for v in params] |
no outgoing calls
no test coverage detected