mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
18 lines
280 B
C++
18 lines
280 B
C++
#include <Functions/identity.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(Identity)
|
|
{
|
|
factory.registerFunction<FunctionIdentity>();
|
|
}
|
|
|
|
REGISTER_FUNCTION(ScalarSubqueryResult)
|
|
{
|
|
factory.registerFunction<FunctionScalarSubqueryResult>();
|
|
}
|
|
|
|
}
|