mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
22 lines
546 B
C++
22 lines
546 B
C++
#include "arrayPush.h"
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class FunctionArrayPushBack : public FunctionArrayPush
|
|
{
|
|
public:
|
|
static constexpr auto name = "arrayPushBack";
|
|
static FunctionPtr create(const Context & context) { return std::make_shared<FunctionArrayPushBack>(context); }
|
|
explicit FunctionArrayPushBack(const Context & context_) : FunctionArrayPush(context_, false, name) {}
|
|
};
|
|
|
|
void registerFunctionArrayPushBack(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionArrayPushBack>();
|
|
}
|
|
|
|
}
|