mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Split has.
This commit is contained in:
parent
9a6b4b3355
commit
17ec88da84
@ -61,10 +61,10 @@ inline void sliceHas(IArraySource & first, IArraySource & second, ArraySearchTyp
|
|||||||
switch (search_type)
|
switch (search_type)
|
||||||
{
|
{
|
||||||
case ArraySearchType::All:
|
case ArraySearchType::All:
|
||||||
sliceHasAny(first, second, result);
|
sliceHasAll(first, second, result);
|
||||||
break;
|
break;
|
||||||
case ArraySearchType::Any:
|
case ArraySearchType::Any:
|
||||||
sliceHasAll(first, second, result);
|
sliceHasAny(first, second, result);
|
||||||
break;
|
break;
|
||||||
case ArraySearchType::Substr:
|
case ArraySearchType::Substr:
|
||||||
sliceHasSubstr(first, second, result);
|
sliceHasSubstr(first, second, result);
|
||||||
|
Loading…
Reference in New Issue
Block a user