Fix olap scan node normalize_in_and_eq_predicate infinite loop bug. (#10817)
This commit is contained in:
@ -1078,6 +1078,7 @@ Status OlapScanNode::normalize_in_and_eq_predicate(SlotDescriptor* slot,
|
||||
// column in (nullptr) is always false so continue to
|
||||
// dispose next item
|
||||
if (nullptr == iter->get_value()) {
|
||||
iter->next();
|
||||
continue;
|
||||
}
|
||||
auto value = const_cast<void*>(iter->get_value());
|
||||
|
||||
Reference in New Issue
Block a user