Returns whether the Impala exec state of a operation_handle is PENDING
(self, operation_handle)
| 229 | return self.__is_at_exec_state(operation_handle, INITIALIZED) |
| 230 | |
| 231 | def is_pending(self, operation_handle): |
| 232 | """Returns whether the Impala exec state of a operation_handle is PENDING""" |
| 233 | return self.__is_at_exec_state(operation_handle, PENDING) |
| 234 | |
| 235 | def is_running(self, operation_handle): |
| 236 | """Returns whether the Impala exec state of a operation_handle is RUNNING""" |