Return the URL link to the debug page of the query
(self, query_id)
| 305 | raise NotImplementedError() |
| 306 | |
| 307 | def get_query_link(self, query_id): |
| 308 | """Return the URL link to the debug page of the query""" |
| 309 | return "%s/query_plan?query_id=%s" % (self.webserver_address, query_id) |
| 310 | |
| 311 | def wait_to_finish(self, last_query_handle, periodic_callback=None): |
| 312 | """Wait until the results can be fetched for 'last_query_handle' or until the |
no outgoing calls
no test coverage detected