mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
22 lines
509 B
C++
22 lines
509 B
C++
|
#include <Functions/arrayPop.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class FunctionArrayPopFront : public FunctionArrayPop
|
||
|
{
|
||
|
public:
|
||
|
static constexpr auto name = "arrayPopFront";
|
||
|
static FunctionPtr create(const Context & context) { return std::make_shared<FunctionArrayPopFront>(context); }
|
||
|
FunctionArrayPopFront() : FunctionArrayPop(true, name) {}
|
||
|
};
|
||
|
|
||
|
void registerFunctionArrayPopFront(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionArrayPopFront>();
|
||
|
}
|
||
|
|
||
|
}
|