1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-1385 Initial 10.3 support

This commit is contained in:
Andrew Hutchings
2018-08-02 14:52:15 +01:00
parent 57367c8ec2
commit 443a2867c4
26 changed files with 384 additions and 348 deletions

View File

@ -139,6 +139,7 @@ FuncExp::FuncExp()
fFuncMap["least"] = new Func_least(); //dlh
fFuncMap["left"] = new Func_left(); //dlh
fFuncMap["length"] = new Func_length();
fFuncMap["octet_length"] = new Func_length(); // MariaDB 10.3
fFuncMap["ln"] = new Func_log();
fFuncMap["locate"] = new Func_instr();
fFuncMap["log"] = new Func_log();
@ -152,6 +153,7 @@ FuncExp::FuncExp()
fFuncMap["microsecond"] = new Func_microsecond();
fFuncMap["minute"] = new Func_minute(); //dlh
fFuncMap["mod"] = new Func_mod(); //dlh
fFuncMap["MOD"] = new Func_mod(); // MariaDB 10.3
fFuncMap["%"] = new Func_mod(); //dlh
fFuncMap["md5"] = new Func_md5();
fFuncMap["mid"] = new Func_substr();