mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 19:32:07 +00:00
3f57fc085b
Also remove it from some visitors.
22 lines
484 B
C++
22 lines
484 B
C++
#include "arrayPop.h"
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class FunctionArrayPopFront : public FunctionArrayPop
|
|
{
|
|
public:
|
|
static constexpr auto name = "arrayPopFront";
|
|
static FunctionPtr create(ContextConstPtr) { return std::make_shared<FunctionArrayPopFront>(); }
|
|
FunctionArrayPopFront() : FunctionArrayPop(true, name) {}
|
|
};
|
|
|
|
void registerFunctionArrayPopFront(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionArrayPopFront>();
|
|
}
|
|
|
|
}
|