[fix](executor)Fix query hang when query bitmap Orth intersect #22828

This commit is contained in:
wangbo
2023-08-10 18:50:33 +08:00
committed by GitHub
parent 10d4124c82
commit 4360b8520e

View File

@ -184,6 +184,9 @@ public:
// intersection
BitmapValue intersect() const {
BitmapValue result;
if (_bitmaps.empty()) {
return result;
}
auto it = _bitmaps.begin();
result |= it->second;
it++;