MCPcopy Create free account
hub / github.com/bytedance/bolt / ROW>

Method ROW>

bolt/vector/tests/VectorTestUtils.cpp:112–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110
111template <>
112void checkVectorFlagsClearedTyped<TypeKind::ROW>(
113 const BaseVector& vector,
114 const SelectivityVector& asciiClearedRows,
115 const SelectivityVector& asciiRemainRows) {
116 checkBaseVectorFlagsCleared(vector);
117
118 auto* rowVector = vector.as<RowVector>();
119 for (const auto& child : rowVector->children()) {
120 checkVectorFlagsCleared(*child, asciiClearedRows, asciiRemainRows);
121 }
122}
123
124template <>
125void checkVectorFlagsClearedTyped<TypeKind::VARIANT>(

Callers

nothing calls this directly

Calls 6

checkVectorFlagsClearedFunction · 0.85
checkVectorFlagsSetFunction · 0.85
has_valueMethod · 0.80
childrenMethod · 0.45
getNullCountMethod · 0.45

Tested by

no test coverage detected