MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / copyFromBuffer

Method copyFromBuffer

src/common/arrow/arrow_null_mask_tree.cpp:25–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25bool ArrowNullMaskTree::copyFromBuffer(const void* buffer, uint64_t srcOffset, uint64_t count) {
26 if (buffer == nullptr) {
27 mask->setAllNonNull();
28 return false;
29 }
30 mask->copyFromNullBits((const uint64_t*)buffer, srcOffset, 0, count, true);
31 return true;
32}
33
34bool ArrowNullMaskTree::applyParentBitmap(const NullMask* parent) {
35 if (parent == nullptr) {

Callers

nothing calls this directly

Calls 1

copyFromNullBitsMethod · 0.80

Tested by

no test coverage detected