Executes the given query against the specified Impalad
(cls, impalad_client, query, query_options=None, user=None)
| 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): |
no test coverage detected