1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-1775 Fix addtime/subtime for WHERE

MariaDB server renamed addtime/subtime so we need to use the new names
for these functions.
This commit is contained in:
Andrew Hutchings
2018-10-06 11:27:51 +01:00
parent 3fffc75d86
commit 6a72b28bab
2 changed files with 11 additions and 3 deletions

View File

@ -75,6 +75,8 @@ FuncExp::FuncExp()
fFuncMap["abs"] = new Func_abs();
fFuncMap["acos"] = new Func_acos();
fFuncMap["add_time"] = new Func_add_time();
fFuncMap["addtime"] = new Func_add_time();
fFuncMap["subtime"] = new Func_add_time();
fFuncMap["asin"] = new Func_asin();
fFuncMap["ascii"] = new Func_ascii();
fFuncMap["atan"] = new Func_atan();