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