MCPcopy Create free account
hub / github.com/bytedance/bolt / lookup

Method lookup

bolt/exec/IndexLookupJoin.cpp:308–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306}
307
308void 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
319RowVectorPtr IndexLookupJoin::getOutputFromLookupResult() {
320 BOLT_CHECK_NOT_NULL(input_);

Callers 1

CompileModuleMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected