ClickHouse/dbms/Functions/array/indexOf.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

20 lines
454 B
C++

#include "arrayIndex.h"
#include <Functions/FunctionFactory.h>
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<IndexIdentity, NameIndexOf>;
void registerFunctionIndexOf(FunctionFactory & factory)
{
factory.registerFunction<FunctionIndexOf>();
}
}