| 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, |