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

Method containsNullAt

bolt/vector/ComplexVector.cpp:85–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85bool RowVector::containsNullAt(vector_size_t idx) const {
86 if (BaseVector::isNullAt(idx)) {
87 return true;
88 }
89
90 for (const auto& child : children_) {
91 if (child != nullptr && child->containsNullAt(idx)) {
92 return true;
93 }
94 }
95
96 return false;
97}
98
99std::optional<int32_t> RowVector::compare(
100 const BaseVector* other,

Callers 8

TEST_FFunction · 0.45
applyMethod · 0.45
createMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyArrayTypedSetMethod · 0.45
checkNestedNullsFunction · 0.45
applyMethod · 0.45

Calls 1

isNullAtFunction · 0.70

Tested by 1

TEST_FFunction · 0.36