Returns whether the Impala exec state of a operation_handle is INITIALIZED
(self, operation_handle)
| 225 | return self.is_finished(operation_handle) |
| 226 | |
| 227 | def is_initialized(self, operation_handle): |
| 228 | """Returns whether the Impala exec state of a operation_handle is INITIALIZED""" |
| 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""" |
nothing calls this directly
no test coverage detected