Return true if any kind of error status was returned from the query (i.e. the query didn't run to completion, time out or get cancelled).
(self)
| 429 | """.strip() % self.__dict__) |
| 430 | |
| 431 | def has_query_error(self): |
| 432 | """Return true if any kind of error status was returned from the query (i.e. |
| 433 | the query didn't run to completion, time out or get cancelled).""" |
| 434 | return (self.not_enough_memory or self.ac_rejected or self.ac_timedout |
| 435 | or self.other_error) |
| 436 | |
| 437 | def write_query_profile(self, directory, prefix=None): |
| 438 | """ |
no outgoing calls
no test coverage detected