| 395 | } |
| 396 | |
| 397 | void Driver::enqueueInternal() { |
| 398 | BOLT_CHECK(!state_.isEnqueued); |
| 399 | state_.isEnqueued = true; |
| 400 | // When enqueuing, starting timing the queue time. |
| 401 | queueTimeStartMicros_ = getCurrentTimeMicro(); |
| 402 | } |
| 403 | |
| 404 | // Call an Operator method. record silenced throws, but not a query |
| 405 | // terminating throw. Annotate exceptions with Operator info. |
no test coverage detected