ClickHouse/dbms/Functions/array/has.cpp
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

19 lines
366 B
C++

#include "arrayIndex.h"
#include <Functions/FunctionFactory.h>
namespace DB
{
struct NameHas { static constexpr auto name = "has"; };
/// has(arr, x) - whether there is an element x in the array.
using FunctionHas = FunctionArrayIndex<IndexToOne, NameHas>;
void registerFunctionHas(FunctionFactory & factory)
{
factory.registerFunction<FunctionHas>();
}
}