(self, sql_stmt, user=None)
| 460 | fetch_exec_summary=fetch_exec_summary) |
| 461 | |
| 462 | def execute_async(self, sql_stmt, user=None): |
| 463 | self.log_client(u"executing async {0}\n{1}".format( |
| 464 | self.__host_port, format_sql_for_logging(sql_stmt))) |
| 465 | beeswax_handle = self.__beeswax_client.execute_query_async(sql_stmt, user=user) |
| 466 | return OperationHandle(beeswax_handle, sql_stmt) |
| 467 | |
| 468 | def cancel(self, operation_handle): |
| 469 | self.log_handle(operation_handle, 'canceling operation') |
nothing calls this directly
no test coverage detected