(self, operation_handle,
profile_format=TRuntimeProfileFormat.STRING)
| 481 | return self.__beeswax_client.get_exec_summary(operation_handle.get_handle()) |
| 482 | |
| 483 | def get_runtime_profile(self, operation_handle, |
| 484 | profile_format=TRuntimeProfileFormat.STRING): |
| 485 | assert profile_format == TRuntimeProfileFormat.STRING, ( |
| 486 | "Beeswax client only supports getting runtime profile in STRING format.") |
| 487 | self.log_handle(operation_handle, 'getting runtime profile operation') |
| 488 | return self.__beeswax_client.get_runtime_profile(operation_handle.get_handle()) |
| 489 | |
| 490 | def wait_for_finished_timeout(self, operation_handle, timeout): |
| 491 | self.log_handle(operation_handle, 'waiting for query to reach FINISHED state') |
nothing calls this directly
no test coverage detected