MCPcopy Create free account
hub / github.com/apache/impala / state_is_finished

Method state_is_finished

tests/common/impala_connection.py:222–225  ·  view source on GitHub ↗

Returns whether the Impala exec state of a operation_handle is FINISHED. DEPRECATED: use is_finished() instead.

(self, operation_handle)

Source from the content-addressed store, hash-verified

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"""

Callers 1

test_report_timeMethod · 0.45

Calls 1

is_finishedMethod · 0.95

Tested by 1

test_report_timeMethod · 0.36