ClickHouse/src/Functions/isNotDistinctFrom.cpp

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

13 lines
162 B
C++
Raw Normal View History

#include <Functions/isNotDistinctFrom.h>
namespace DB
{
REGISTER_FUNCTION(IsNotDistinctFrom)
{
factory.registerFunction<FunctionIsNotDistinctFrom>();
}
}