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

Method deselectNulls

bolt/vector/SelectivityVector.h:229–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227 }
228
229 void deselectNulls(const uint64_t* bits, int32_t begin, int32_t end) {
230 bits::andBits(
231 bits_.data(),
232 reinterpret_cast<const uint64_t*>(bits),
233 std::max<int32_t>(begin_, begin),
234 std::min<int32_t>(end_, end));
235 updateBounds();
236 }
237
238 void deselectNonNulls(const uint64_t* bits, int32_t begin, int32_t end) {
239 bits::andWithNegatedBits(

Callers 1

selectBaseRowsToLoadFunction · 0.45

Calls 2

andBitsFunction · 0.85
dataMethod · 0.45

Tested by

no test coverage detected