Check that data-dependent flags have been reset. If the asciiness flag applies, check that the asciiness information is cleared at asciiClearedRows and remains at asciiRemainRows.
| 138 | // applies, check that the asciiness information is cleared at asciiClearedRows |
| 139 | // and remains at asciiRemainRows. |
| 140 | void checkVectorFlagsCleared( |
| 141 | const BaseVector& vector, |
| 142 | const SelectivityVector& asciiClearedRows, |
| 143 | const SelectivityVector& asciiRemainRows) { |
| 144 | BOLT_DYNAMIC_TYPE_DISPATCH_ALL( |
| 145 | checkVectorFlagsClearedTyped, |
| 146 | vector.typeKind(), |
| 147 | vector, |
| 148 | asciiClearedRows, |
| 149 | asciiRemainRows); |
| 150 | } |
| 151 | |
| 152 | template <TypeKind kind> |
| 153 | void checkVectorFlagsSetTyped( |