| 83 | |
| 84 | template <> |
| 85 | void checkVectorFlagsClearedTyped<TypeKind::MAP>( |
| 86 | const BaseVector& vector, |
| 87 | const SelectivityVector& /*asciiClearedRows*/, |
| 88 | const SelectivityVector& /*asciiRemainRows*/) { |
| 89 | auto* mapVector = vector.as<MapVector>(); |
| 90 | checkBaseVectorFlagsCleared(vector); |
| 91 | EXPECT_FALSE(mapVector->hasSortedKeys()); |
| 92 | |
| 93 | // MapVector is not expected to clear asciiness of children vector at existing |
| 94 | // rows. |
| 95 | checkVectorFlagsCleared(*mapVector->mapKeys(), {}, {}); |
| 96 | checkVectorFlagsCleared(*mapVector->mapValues(), {}, {}); |
| 97 | } |
| 98 | |
| 99 | template <> |
| 100 | void checkVectorFlagsClearedTyped<TypeKind::ARRAY>( |
nothing calls this directly
no test coverage detected