Returns whether the Impala exec state of a operation_handle is ERROR. Internally, it will call get_state(), and any exception thrown by get_state() will cause this method to return True.
(self, operation_handle)
| 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. |
| 245 | Internally, it will call get_state(), and any exception thrown by get_state() will |
| 246 | cause this method to return True.""" |
| 247 | return self.__is_at_exec_state(operation_handle, ERROR) |
| 248 | |
| 249 | def is_executing(self, operation_handle): |
| 250 | """Returns whether the state of a operation_handle is executing or will be |