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

Initial commit for Encode/Decode.

This commit is contained in:
benthompson15
2020-11-06 15:23:24 -06:00
parent 84fb821c47
commit 3e9b7b3401
9 changed files with 320 additions and 4 deletions

View File

@ -111,9 +111,11 @@ FuncExp::FuncExp()
fFuncMap["dayofmonth"] = new Func_day(); //dlh
fFuncMap["dayofweek"] = new Func_dayofweek(); //dlh
fFuncMap["dayofyear"] = new Func_dayofyear(); //dlh
fFuncMap["decode"] = new Func_decode(); // BT
fFuncMap["degrees"] = new Func_degrees();
fFuncMap["DIV"] = new Func_div(); // MySQL use upper case for this function name
fFuncMap["elt"] = new Func_elt();
fFuncMap["encode"] = new Func_encode(); // BT
fFuncMap["exp"] = new Func_exp();
fFuncMap["extract"] = new Func_extract(); //dlh
fFuncMap["find_in_set"] = new Func_find_in_set();