ClickHouse/src/Functions/identity.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
367 B
C++
Raw Normal View History

#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>();
}
}