| 34 | namespace { |
| 35 | |
| 36 | void checkBaseVectorFlagsSet(const BaseVector& vector) { |
| 37 | EXPECT_TRUE(vector.getNullCount().has_value()); |
| 38 | EXPECT_TRUE(vector.getDistinctValueCount().has_value()); |
| 39 | EXPECT_TRUE(vector.representedBytes().has_value()); |
| 40 | EXPECT_TRUE(vector.storageBytes().has_value()); |
| 41 | } |
| 42 | |
| 43 | void checkBaseVectorFlagsCleared(const BaseVector& vector) { |
| 44 | EXPECT_FALSE(vector.getNullCount().has_value()); |
no test coverage detected