| 306 | } |
| 307 | |
| 308 | void IndexLookupJoin::lookup() { |
| 309 | BOLT_CHECK_NOT_NULL(indexSource_); |
| 310 | BOLT_CHECK_NOT_NULL(input_); |
| 311 | BOLT_CHECK_NOT_NULL(lookupInput_); |
| 312 | BOLT_CHECK_NULL(lookupResultIter_); |
| 313 | BOLT_CHECK_EQ(lookupInput_->size(), input_->size()); |
| 314 | |
| 315 | lookupResultIter_ = |
| 316 | indexSource_->lookup(connector::IndexSource::LookupRequest{lookupInput_}); |
| 317 | } |
| 318 | |
| 319 | RowVectorPtr IndexLookupJoin::getOutputFromLookupResult() { |
| 320 | BOLT_CHECK_NOT_NULL(input_); |