blob: b2e80302f9ad871c0764eec9a3c58f6e89c6ef5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "arrayPop.h"
#include <Functions/FunctionFactory.h>
namespace DB
{
class FunctionArrayPopBack : public FunctionArrayPop
{
public:
static constexpr auto name = "arrayPopBack";
static FunctionPtr create(ContextPtr) { return std::make_shared<FunctionArrayPopBack>(); }
FunctionArrayPopBack() : FunctionArrayPop(false, name) {}
};
REGISTER_FUNCTION(ArrayPopBack)
{
factory.registerFunction<FunctionArrayPopBack>();
}
}
|