| 1295 | } |
| 1296 | |
| 1297 | Status ClientRequestState::WaitAsync() { |
| 1298 | // TODO: IMPALA-7396: thread creation fault inject is disabled because it is not |
| 1299 | // handled correctly. |
| 1300 | return Thread::Create("query-exec-state", "wait-thread", |
| 1301 | &ClientRequestState::Wait, this, &wait_thread_, false); |
| 1302 | } |
| 1303 | |
| 1304 | bool ClientRequestState::BlockOnWait(int64_t timeout_us, int64_t* block_on_wait_time_us) { |
| 1305 | DCHECK_GE(timeout_us, 0); |
no test coverage detected