Returns true if 'this' is equal to or a subset of 'other'.
| 279 | |
| 280 | // Returns true if 'this' is equal to or a subset of 'other'. |
| 281 | bool isSubset(const SelectivityVector& other) const { |
| 282 | if (begin_ >= other.begin_ && end_ <= other.end_) { |
| 283 | return bits::isSubset(bits_.data(), other.bits_.data(), begin_, end_); |
| 284 | } |
| 285 | return false; |
| 286 | } |
| 287 | |
| 288 | /** |
| 289 | * Updates the begin_ and end_ values to match the |
no test coverage detected