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

22 lines
479 B
C++

#include "arrayPop.h"
#include <Functions/FunctionFactory.h>
namespace DB
{
class FunctionArrayPopBack : public FunctionArrayPop
{
public:
static constexpr auto name = "arrayPopBack";
static FunctionPtr create(const Context &) { return std::make_shared<FunctionArrayPopBack>(); }
FunctionArrayPopBack() : FunctionArrayPop(false, name) {}
};
void registerFunctionArrayPopBack(FunctionFactory & factory)
{
factory.registerFunction<FunctionArrayPopBack>();
}
}