Issues a query and returns the handle to the caller for processing. Only one async operation per connection at a time is supported, due to limitations of the Beeswax protocol and the Impyla client.
(self, sql_stmt)
| 275 | |
| 276 | @abc.abstractmethod |
| 277 | def execute_async(self, sql_stmt): |
| 278 | """Issues a query and returns the handle to the caller for processing. Only one |
| 279 | async operation per connection at a time is supported, due to limitations of the |
| 280 | Beeswax protocol and the Impyla client.""" |
| 281 | pass |
| 282 | |
| 283 | @abc.abstractmethod |
| 284 | def fetch(self, sql_stmt, operation_handle, max_rows=-1, discard_results=False): |
no outgoing calls