| 48 | } |
| 49 | |
| 50 | void BitmapTableScan::internalOpen(thread_db* tdbb) const |
| 51 | { |
| 52 | Request* const request = tdbb->getRequest(); |
| 53 | Impure* const impure = request->getImpure<Impure>(m_impure); |
| 54 | |
| 55 | impure->irsb_flags = irsb_open; |
| 56 | impure->irsb_bitmap = EVL_bitmap(tdbb, m_inversion, NULL); |
| 57 | |
| 58 | record_param* const rpb = &request->req_rpb[m_stream]; |
| 59 | RLCK_reserve_relation(tdbb, request->req_transaction, m_relation, false); |
| 60 | |
| 61 | rpb->rpb_number.setValue(BOF_NUMBER); |
| 62 | } |
| 63 | |
| 64 | void BitmapTableScan::close(thread_db* tdbb) const |
| 65 | { |
nothing calls this directly
no test coverage detected