Add repeat MySQL compatibility alias

This commit is contained in:
dankondr 2021-01-25 16:20:01 +03:00
parent d7c5dd3767
commit f49c8779a8
3 changed files with 3 additions and 1 deletions

View File

@ -252,7 +252,7 @@ public:
void registerFunctionRepeat(FunctionFactory & factory)
{
factory.registerFunction<FunctionRepeat>();
factory.registerFunction<FunctionRepeat>(FunctionFactory::CaseInsensitive);
}
}

View File

@ -0,0 +1 @@
TestTestTest

View File

@ -0,0 +1 @@
SELECT REPEAT('Test', 3);