| 110 | |
| 111 | template <> |
| 112 | void checkVectorFlagsClearedTyped<TypeKind::ROW>( |
| 113 | const BaseVector& vector, |
| 114 | const SelectivityVector& asciiClearedRows, |
| 115 | const SelectivityVector& asciiRemainRows) { |
| 116 | checkBaseVectorFlagsCleared(vector); |
| 117 | |
| 118 | auto* rowVector = vector.as<RowVector>(); |
| 119 | for (const auto& child : rowVector->children()) { |
| 120 | checkVectorFlagsCleared(*child, asciiClearedRows, asciiRemainRows); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | template <> |
| 125 | void checkVectorFlagsClearedTyped<TypeKind::VARIANT>( |
nothing calls this directly
no test coverage detected