mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 01:41:59 +00:00
23 lines
367 B
C++
23 lines
367 B
C++
#include <Functions/identity.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(Identity)
|
|
{
|
|
factory.registerFunction<FunctionIdentity>();
|
|
}
|
|
|
|
REGISTER_FUNCTION(ScalarSubqueryResult)
|
|
{
|
|
factory.registerFunction<FunctionScalarSubqueryResult>();
|
|
}
|
|
|
|
REGISTER_FUNCTION(ActionName)
|
|
{
|
|
factory.registerFunction<FunctionActionName>();
|
|
}
|
|
|
|
}
|