Execute a query against sepecific impalad without checking whether the query succeded or failed. Remember to pass vector.get_value('exec_option') as 'query_options' argument if the test has one.
(self, impalad_client, query, query_options=None, user=None)
| 1270 | |
| 1271 | @execute_wrapper |
| 1272 | def execute_query_unchecked(self, impalad_client, query, query_options=None, user=None): |
| 1273 | """Execute a query against sepecific impalad without checking whether the query |
| 1274 | succeded or failed. Remember to pass vector.get_value('exec_option') as |
| 1275 | 'query_options' argument if the test has one.""" |
| 1276 | return self.__execute_query(impalad_client, query, query_options, user) |
| 1277 | |
| 1278 | @execute_wrapper |
| 1279 | def execute_query(self, query, query_options=None): |
no test coverage detected