You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-267 multi-block support for PrimProc and bulk
* Adds multi-block bulk write support * Adds PrimProc multi-block read support * Allows the functions length() and hex() to work with BLOB columns
This commit is contained in:
@ -265,7 +265,9 @@ void FuncExp::evaluate(rowgroup::Row& row, std::vector<execplan::SRCP>& expressi
|
||||
break;
|
||||
}
|
||||
case CalpontSystemCatalog::CHAR:
|
||||
case CalpontSystemCatalog::VARCHAR:
|
||||
case CalpontSystemCatalog::VARCHAR:
|
||||
// TODO: might not be right thing for BLOB
|
||||
case CalpontSystemCatalog::BLOB:
|
||||
{
|
||||
const std::string& val = expression[i]->getStrVal(row, isNull);
|
||||
if (isNull)
|
||||
|
Reference in New Issue
Block a user