Closes the current Impala connection.
(self)
| 729 | raise FatalShellException() |
| 730 | |
| 731 | def close_connection(self): |
| 732 | """Closes the current Impala connection.""" |
| 733 | if self.imp_client: |
| 734 | self.imp_client.close_connection() |
| 735 | |
| 736 | def _signal_handler(self, signal, frame): |
| 737 | """Handles query cancellation on a Ctrl+C event""" |
no outgoing calls
no test coverage detected