Make function "concat" case insensitive for compatibility [#CLICKHOUSE-20]

This commit is contained in:
Alexey Milovidov 2018-10-05 22:58:01 +03:00
parent 9e1c51aca4
commit 964a6e5771
3 changed files with 3 additions and 1 deletions

View File

@ -186,7 +186,7 @@ private:
void registerFunctionsConcat(FunctionFactory & factory)
{
factory.registerFunction<FunctionBuilderConcat>();
factory.registerFunction<FunctionBuilderConcat>(FunctionFactory::CaseInsensitive);
factory.registerFunction<FunctionConcatAssumeInjective>();
}

View File

@ -0,0 +1 @@
Hello, world!

View File

@ -0,0 +1 @@
SELECT CONCAT('Hello', ', ', 'world!');