(self, operation_handle)
| 1133 | raise NotImplementedError() |
| 1134 | |
| 1135 | def get_impala_exec_state(self, operation_handle): |
| 1136 | try: |
| 1137 | return ImpylaHS2Connection.OPERATION_STATE_TO_EXEC_STATE[ |
| 1138 | self.get_state(operation_handle)] |
| 1139 | except impyla_error.Error: |
| 1140 | return ERROR |
| 1141 | except Exception as e: |
| 1142 | raise e |
| 1143 | |
| 1144 | def get_runtime_profile(self, operation_handle, |
| 1145 | profile_format=TRuntimeProfileFormat.STRING): |