(self, operation_handle,
profile_format=TRuntimeProfileFormat.STRING)
| 792 | return cursor.get_summary() |
| 793 | |
| 794 | def get_runtime_profile(self, operation_handle, |
| 795 | profile_format=TRuntimeProfileFormat.STRING): |
| 796 | self.log_handle(operation_handle, 'getting runtime profile operation') |
| 797 | cursor = operation_handle.get_handle() |
| 798 | return cursor.get_profile(profile_format=profile_format) |
| 799 | |
| 800 | def wait_for_finished_timeout(self, operation_handle, timeout): |
| 801 | self.log_handle(operation_handle, 'waiting for query to reach FINISHED state') |
no test coverage detected