Merge pull request #33841 from kitaisreal/functions-conversion-fix-typo

FunctionsConversion fix typo
This commit is contained in:
Maksim Kita 2022-01-20 19:04:29 +01:00 committed by GitHub
commit 0aa4355b6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ void registerFunctionsConversion(FunctionFactory & factory)
factory.registerFunction<FunctionToDecimal256>(); factory.registerFunction<FunctionToDecimal256>();
factory.registerFunction<FunctionToDate>(); factory.registerFunction<FunctionToDate>();
/// MysQL compatibility alias. /// MySQL compatibility alias.
factory.registerFunction<FunctionToDate>("DATE", FunctionFactory::CaseInsensitive); factory.registerFunction<FunctionToDate>("DATE", FunctionFactory::CaseInsensitive);
factory.registerFunction<FunctionToDate32>(); factory.registerFunction<FunctionToDate32>();
factory.registerFunction<FunctionToDateTime>(); factory.registerFunction<FunctionToDateTime>();