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

Method updateContainsLazyNotLoaded

bolt/vector/ComplexVector.cpp:508–517  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

506}
507
508void RowVector::updateContainsLazyNotLoaded() const {
509 childrenLoaded_ = false;
510 containsLazyNotLoaded_ = false;
511 for (auto& child : children_) {
512 if (child && isLazyNotLoaded(*child)) {
513 containsLazyNotLoaded_ = true;
514 break;
515 }
516 }
517}
518
519void ArrayVectorBase::copyRangesImpl(
520 const BaseVector* source,

Callers 3

ensureLoadedRowsImplMethod · 0.80
getValuesMethod · 0.80
toIntermediateMethod · 0.80

Calls 1

isLazyNotLoadedFunction · 0.85

Tested by

no test coverage detected