| 381 | } |
| 382 | |
| 383 | IndexCondition::~IndexCondition() |
| 384 | { |
| 385 | if (m_request) |
| 386 | { |
| 387 | EXE_unwind(m_tdbb, m_request); |
| 388 | |
| 389 | m_request->req_flags &= ~req_in_use; |
| 390 | m_request->req_attachment = nullptr; |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | bool IndexCondition::evaluate(Record* record) const |
| 395 | { |
nothing calls this directly
no test coverage detected