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

Method assertNoNulls

bolt/vector/tests/DecodedVectorTest.cpp:60–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58 }
59
60 void assertNoNulls(
61 DecodedVector& decodedVector,
62 const SelectivityVector* rows = nullptr) {
63 ASSERT_TRUE(decodedVector.nulls(nullptr) == nullptr);
64 for (auto i = 0; i < decodedVector.size(); ++i) {
65 ASSERT_FALSE(decodedVector.isNullAt(i));
66 }
67 }
68
69 void assertNulls(
70 const VectorPtr& vector,

Callers

nothing calls this directly

Calls 3

nullsMethod · 0.45
sizeMethod · 0.45
isNullAtMethod · 0.45

Tested by

no test coverage detected