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

Method setState

src/common/vector/value_vector.cpp:36–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36void ValueVector::setState(const std::shared_ptr<DataChunkState>& state_) {
37 this->state = state_;
38 if (dataType.getPhysicalType() == PhysicalTypeID::STRUCT) {
39 auto childrenVectors = StructVector::getFieldVectors(this);
40 for (auto& childVector : childrenVectors) {
41 childVector->setState(state_);
42 }
43 }
44}
45
46uint32_t ValueVector::countNonNull() const {
47 if (hasNoNullsGuarantee()) {

Callers 15

detachDeleteNodeMethod · 0.80
valueCompileFuncFunction · 0.80
evaluateMethod · 0.80
resolveResultVectorMethod · 0.80
initMethod · 0.80
flushBatchMethod · 0.80
initVectorsMethod · 0.80
initMethod · 0.80

Calls 2

getFieldVectorsFunction · 0.85
getPhysicalTypeMethod · 0.45

Tested by 1

detachDeleteNodeMethod · 0.64