Returns true if this ClientRequestState was created as a retry of a previously failed query, false otherwise. This is different from WasRetried() which tracks if this ClientRequestState was retried (retries are done in a new ClientRequestState).
| 455 | /// if this ClientRequestState was retried (retries are done in a new |
| 456 | /// ClientRequestState). |
| 457 | bool IsRetriedQuery() const { return original_id_ != nullptr; } |
| 458 | |
| 459 | /// Only called if this is a "retried" query - e.g. it was created as a result of |
| 460 | /// retrying a failed query. It sets the 'original_id_' field, which is the query id of |
no outgoing calls
no test coverage detected