Split has.

This commit is contained in:
Nikolai Kochetov 2020-09-16 16:37:16 +03:00
parent bc1031be9b
commit 0eff356c38
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ namespace DB::GatherUtils
struct ArrayHasAllSelectArraySourcePair : public ArraySourcePairSelector<ArrayHasSelectArraySourcePair>
{
template <typename FirstSource, typename SecondSource>
static void selectSourcePair(FirstSource && first, SecondSource && second, ArraySearchType search_type, ColumnUInt8 & result)
static void selectSourcePair(FirstSource && first, SecondSource && second, ColumnUInt8 & result)
{
arrayAllAny<ArraySearchType::All>(first, second, result);
}

View File

@ -8,7 +8,7 @@ namespace DB::GatherUtils
struct ArrayHasAnySelectArraySourcePair : public ArraySourcePairSelector<ArrayHasSelectArraySourcePair>
{
template <typename FirstSource, typename SecondSource>
static void selectSourcePair(FirstSource && first, SecondSource && second, ArraySearchType search_type, ColumnUInt8 & result)
static void selectSourcePair(FirstSource && first, SecondSource && second, ColumnUInt8 & result)
{
arrayAllAny<ArraySearchType::Any>(first, second, result);
}

View File

@ -8,7 +8,7 @@ namespace DB::GatherUtils
struct ArrayHasSubstrSelectArraySourcePair : public ArraySourcePairSelector<ArrayHasSelectArraySourcePair>
{
template <typename FirstSource, typename SecondSource>
static void selectSourcePair(FirstSource && first, SecondSource && second, ArraySearchType search_type, ColumnUInt8 & result)
static void selectSourcePair(FirstSource && first, SecondSource && second, ColumnUInt8 & result)
{
arrayAllAny<ArraySearchType::Substr>(first, second, result);
}