ClickHouse/src/Functions/addHours.cpp

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

18 lines
276 B
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
namespace DB
{
using FunctionAddHours = FunctionDateOrDateTimeAddInterval<AddHoursImpl>;
REGISTER_FUNCTION(AddHours)
{
factory.registerFunction<FunctionAddHours>();
}
}