mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
20 lines
464 B
C++
20 lines
464 B
C++
|
#include <Functions/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>();
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|