blob: 7174f1fd31880f47b5a965f03d5493de19b6838f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <Functions/identity.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
REGISTER_FUNCTION(Identity)
{
factory.registerFunction<FunctionIdentity>();
}
}
|