Close the query handle. Idempotent - after the first attempt, closing the same query handle is a no-op. Returns True if the query was closed successfully or False otherwise.
(self, last_query_handle)
| 368 | raise NotImplementedError() |
| 369 | |
| 370 | def close_query(self, last_query_handle): |
| 371 | """Close the query handle. Idempotent - after the first attempt, closing the same |
| 372 | query handle is a no-op. Returns True if the query was closed |
| 373 | successfully or False otherwise.""" |
| 374 | raise NotImplementedError() |
| 375 | |
| 376 | def cancel_query(self, last_query_handle): |
| 377 | """Cancel a query on a keyboard interrupt from the shell. Return True if the |
no outgoing calls
no test coverage detected