Returns whether the Impala exec state of a operation_handle is FINISHED. DEPRECATED: use is_finished() instead.
(self, operation_handle)
| 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. |
| 224 | DEPRECATED: use is_finished() instead.""" |
| 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""" |