Cancel a query on a keyboard interrupt from the shell. Return True if the query was previously cancelled or if the cancel operation succeeded. Return False otherwise.
(self, last_query_handle)
| 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 |
| 378 | query was previously cancelled or if the cancel operation succeeded. Return |
| 379 | False otherwise.""" |
| 380 | raise NotImplementedError() |
| 381 | |
| 382 | def get_runtime_profile(self, last_query_handle, profile_format="string"): # noqa: U100 |
| 383 | """Get the runtime profile string from the server. Returns None if |