[fix](executor)Fix query hang when query bitmap Orth intersect #22828
This commit is contained in:
@ -184,6 +184,9 @@ public:
|
||||
// intersection
|
||||
BitmapValue intersect() const {
|
||||
BitmapValue result;
|
||||
if (_bitmaps.empty()) {
|
||||
return result;
|
||||
}
|
||||
auto it = _bitmaps.begin();
|
||||
result |= it->second;
|
||||
it++;
|
||||
|
||||
Reference in New Issue
Block a user