(self, operation_handle, impala_state)
| 215 | pass |
| 216 | |
| 217 | def __is_at_exec_state(self, operation_handle, impala_state): |
| 218 | self.log_handle( |
| 219 | operation_handle, 'checking ' + impala_state + ' state for operation') |
| 220 | return self.get_impala_exec_state(operation_handle) == impala_state |
| 221 | |
| 222 | def state_is_finished(self, operation_handle): |
| 223 | """Returns whether the Impala exec state of a operation_handle is FINISHED. |
no test coverage detected