| 176 | } |
| 177 | |
| 178 | bool SubQuery::fetch(thread_db* tdbb) const |
| 179 | { |
| 180 | if (!validate(tdbb)) |
| 181 | return false; |
| 182 | |
| 183 | ProfilerSelectStopWatcher profilerSelectStopWatcher(tdbb, this, |
| 184 | ProfilerManager::RecordSourceStopWatcher::Event::GET_RECORD); |
| 185 | |
| 186 | return m_root->getRecord(tdbb); |
| 187 | } |
| 188 | |
| 189 | |
| 190 | // --------------------- |
no test coverage detected