ClickHouse/src/Functions/toMinute.cpp

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

21 lines
489 B
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/DateTimeTransforms.h>
#include <Functions/FunctionDateOrDateTimeToSomething.h>
#include <DataTypes/DataTypesNumber.h>
namespace DB
{
using FunctionToMinute = FunctionDateOrDateTimeToSomething<DataTypeUInt8, ToMinuteImpl>;
REGISTER_FUNCTION(ToMinute)
{
factory.registerFunction<FunctionToMinute>();
2021-01-25 13:35:58 +00:00
/// MysQL compatibility alias.
factory.registerAlias("MINUTE", "toMinute", FunctionFactory::CaseInsensitive);
}
}