ClickHouse/src/Functions/materialize.cpp

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

14 lines
183 B
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
2020-11-17 19:43:26 +00:00
#include <Functions/materialize.h>
namespace DB
{
REGISTER_FUNCTION(Materialize)
{
factory.registerFunction<FunctionMaterialize>();
}
}