(self, operation_handle, fetch_profile_after_close=False)
| 441 | self.__beeswax_client.close_connection() |
| 442 | |
| 443 | def close_query(self, operation_handle, fetch_profile_after_close=False): |
| 444 | self.log_handle(operation_handle, 'closing query for operation') |
| 445 | return self.__beeswax_client.close_query(operation_handle.get_handle(), |
| 446 | fetch_profile_after_close) |
| 447 | |
| 448 | def close_dml(self, operation_handle): |
| 449 | self.log_handle(operation_handle, 'closing DML query') |
nothing calls this directly
no test coverage detected