(self, operation_handle)
| 502 | return self.__beeswax_client.get_admission_result(operation_handle.get_handle()) |
| 503 | |
| 504 | def get_log(self, operation_handle): |
| 505 | self.log_handle(operation_handle, 'getting log for operation') |
| 506 | return self.__beeswax_client.get_log(operation_handle.get_handle().log_context) |
| 507 | |
| 508 | def fetch(self, sql_stmt, operation_handle, max_rows=-1, discard_results=False): |
| 509 | self.log_handle(operation_handle, 'fetching {} rows'.format( |
nothing calls this directly
no test coverage detected