#include "arrayIndex.h" #include namespace DB { struct NameIndexOf { static constexpr auto name = "indexOf"; }; /// indexOf(arr, x) - returns the index of the element x (starting with 1), if it exists in the array, or 0 if it is not. using FunctionIndexOf = FunctionArrayIndex; void registerFunctionIndexOf(FunctionFactory & factory) { factory.registerFunction(); } }