Initialize TExecRequest. Prior to this, exec_request() returns a place-holder.
| 95 | |
| 96 | /// Initialize TExecRequest. Prior to this, exec_request() returns a place-holder. |
| 97 | void SetExecRequest(const TExecRequest* exec_request) { |
| 98 | DCHECK(exec_request_.Load()->stmt_type == TStmtType::UNKNOWN); |
| 99 | exec_request_.Store(exec_request); |
| 100 | } |
| 101 | |
| 102 | /// Sets the profile that is produced by the frontend. The frontend creates the |
| 103 | /// profile during planning and returns it to the backend via TExecRequest, |
no test coverage detected