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