| 41 | } |
| 42 | |
| 43 | void checkBaseVectorFlagsCleared(const BaseVector& vector) { |
| 44 | EXPECT_FALSE(vector.getNullCount().has_value()); |
| 45 | EXPECT_FALSE(vector.getDistinctValueCount().has_value()); |
| 46 | EXPECT_FALSE(vector.representedBytes().has_value()); |
| 47 | EXPECT_FALSE(vector.storageBytes().has_value()); |
| 48 | } |
| 49 | |
| 50 | // Forward declaration. |
| 51 | void checkVectorFlagsCleared( |
no test coverage detected