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

MCOL-3756 Implement IS(NOT)TRUE() and IS(NOT)FALSE() functions.

This commit is contained in:
Gagan Goel
2020-03-20 21:54:31 +00:00
parent fae9864a21
commit 7ca4e8403a
2 changed files with 87 additions and 0 deletions

View File

@ -141,6 +141,10 @@ FuncExp::FuncExp()
fFuncMap["instr"] = new Func_instr();
fFuncMap["isnull"] = new Func_isnull(false);
fFuncMap["isnotnull"] = new Func_isnull(true);
fFuncMap["istrue"] = new Func_IsTrue();
fFuncMap["isnottrue"] = new Func_IsNotTrue();
fFuncMap["isfalse"] = new Func_IsFalse();
fFuncMap["isnotfalse"] = new Func_IsNotFalse();
fFuncMap["last_day"] = new Func_last_day();
fFuncMap["lcase"] = new Func_lcase(); //dlh
fFuncMap["least"] = new Func_least(); //dlh