mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
14 lines
253 B
C++
14 lines
253 B
C++
|
#include <DB/Functions/FunctionsNull.h>
|
||
|
#include <DB/Functions/FunctionFactory.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void registerFunctionsNull(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionIsNull>();
|
||
|
factory.registerFunction<FunctionIsNotNull>();
|
||
|
}
|
||
|
|
||
|
}
|