| 230 | } |
| 231 | |
| 232 | void ClientRequestState::SetRemoteSubmitTime(int64_t remote_submit_time) { |
| 233 | int64_t ack_submit_time = min(MonotonicStopWatch::Now(), remote_submit_time); |
| 234 | if (ack_submit_time < remote_submit_time) { |
| 235 | VLOG_QUERY << "Ignoring remote_submit_time (" << remote_submit_time |
| 236 | << " ns) that is more than coordinator time (" << ack_submit_time |
| 237 | << " ns) for query id=" << PrintId(query_id()); |
| 238 | } |
| 239 | query_events_->Start(ack_submit_time); |
| 240 | } |
| 241 | |
| 242 | void ClientRequestState::SetFrontendProfile(const TExecRequest& exec_request) { |
| 243 | // Should we defer creating and adding the child until here? probably. |
no test coverage detected