(self, operation_handle)
| 470 | return self.__beeswax_client.cancel_query(operation_handle.get_handle()) |
| 471 | |
| 472 | def get_state(self, operation_handle): |
| 473 | self.log_handle(operation_handle, 'getting state') |
| 474 | return self.__beeswax_client.get_state(operation_handle.get_handle()) |
| 475 | |
| 476 | def get_impala_exec_state(self, operation_handle): |
| 477 | return self.__QUERY_STATE_TO_EXEC_STATE[self.get_state(operation_handle)] |
no test coverage detected