Returns whether the Impala exec state of a operation_handle is FINISHED
(self, operation_handle)
| 237 | return self.__is_at_exec_state(operation_handle, RUNNING) |
| 238 | |
| 239 | def is_finished(self, operation_handle): |
| 240 | """Returns whether the Impala exec state of a operation_handle is FINISHED""" |
| 241 | return self.__is_at_exec_state(operation_handle, FINISHED) |
| 242 | |
| 243 | def is_error(self, operation_handle): |
| 244 | """Returns whether the Impala exec state of a operation_handle is ERROR. |