mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
MergeTreeIndexGin crash fix
This commit is contained in:
parent
c7c5e29ff7
commit
bb56af0e2b
@ -655,7 +655,7 @@ bool MergeTreeConditionInverted::tryPrepareSetGinFilter(
|
||||
return false;
|
||||
|
||||
ConstSetPtr prepared_set = rhs.tryGetPreparedSet();
|
||||
if (!prepared_set && !prepared_set->hasExplicitSetElements())
|
||||
if (!prepared_set || !prepared_set->hasExplicitSetElements())
|
||||
return false;
|
||||
|
||||
for (const auto & data_type : prepared_set->getDataTypes())
|
||||
|
Loading…
Reference in New Issue
Block a user