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

1. Implement bit_count() distributed function.

2. Handle hexadecimal string literals in buildReturnedColumn().
This commit is contained in:
Gagan Goel
2019-11-21 15:32:29 +00:00
parent 6b916675d5
commit 2e16fe674c
4 changed files with 71 additions and 0 deletions

View File

@ -86,6 +86,7 @@ FuncExp::FuncExp()
fFuncMap["atan"] = new Func_atan();
fFuncMap["atan2"] = new Func_atan();
fFuncMap["between"] = new Func_between();
fFuncMap["bit_count"] = new Func_bit_count();
fFuncMap["case_searched"] = new Func_searched_case();
fFuncMap["case_simple"] = new Func_simple_case();
fFuncMap["cast_as_signed"] = new Func_cast_signed(); //dlh