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

Method __execute_query

tests/common/impala_test_suite.py:1411–1414  ·  view source on GitHub ↗

Executes the given query against the specified Impalad

(cls, impalad_client, query, query_options=None, user=None)

Source from the content-addressed store, hash-verified

1409
1410 @classmethod
1411 def __execute_query(cls, impalad_client, query, query_options=None, user=None):
1412 """Executes the given query against the specified Impalad"""
1413 if query_options is not None: impalad_client.set_configuration(query_options)
1414 return impalad_client.execute(query, user=user)
1415
1416 @classmethod
1417 def __execute_scalar(cls, impalad_client, query, query_options=None, user=None):

Callers 6

__exec_in_impalaMethod · 0.95
execute_queryMethod · 0.95

Calls 2

set_configurationMethod · 0.80
executeMethod · 0.45

Tested by

no test coverage detected