提交 0eff356c 编写于 作者: N Nikolai Kochetov

Split has.

上级 bc1031be
......@@ -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);
}
......
......@@ -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);
}
......
......@@ -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);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册