You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-642 Separate TEXT from BLOB
* TEXT and BLOB now have separate identifiers internally * TEXT columns are identified as such in system catalog * cpimport only requires hex input for BLOB, not TEXT
This commit is contained in:
@ -49,7 +49,8 @@ int64_t Func_length::getIntVal(rowgroup::Row& row,
|
||||
CalpontSystemCatalog::ColType&)
|
||||
{
|
||||
if ((fp[0]->data()->resultType().colDataType == CalpontSystemCatalog::VARBINARY) ||
|
||||
(fp[0]->data()->resultType().colDataType == CalpontSystemCatalog::BLOB))
|
||||
(fp[0]->data()->resultType().colDataType == CalpontSystemCatalog::BLOB) ||
|
||||
(fp[0]->data()->resultType().colDataType == CalpontSystemCatalog::TEXT))
|
||||
return fp[0]->data()->getStrVal(row, isNull).length();
|
||||
|
||||
return strlen(fp[0]->data()->getStrVal(row, isNull).c_str());
|
||||
|
Reference in New Issue
Block a user