mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
13 lines
162 B
C++
13 lines
162 B
C++
|
#include <Functions/isNotDistinctFrom.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
REGISTER_FUNCTION(IsNotDistinctFrom)
|
||
|
{
|
||
|
factory.registerFunction<FunctionIsNotDistinctFrom>();
|
||
|
}
|
||
|
|
||
|
}
|