(self)
| 648 | return cur.fetchall(), headers, cur.statusmessage |
| 649 | |
| 650 | def is_protocol_error(self): |
| 651 | query = "SELECT 1" |
| 652 | with self.conn.cursor() as cur: |
| 653 | _logger.debug("Simple Query. sql: %r", query) |
| 654 | cur.execute(query) |
| 655 | return bool(cur.protocol_error) |
| 656 | |
| 657 | def get_socket_directory(self): |
| 658 | with self.conn.cursor() as cur: |
no test coverage detected