You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +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:
@@ -510,7 +510,8 @@ void DictStep::_projectToRG(RowGroup &rg, uint32_t col)
|
||||
// bug 4901 - move this inside the loop and call incrementally
|
||||
// to save the unnecessary string copy
|
||||
if ((rg.getColTypes()[col] != execplan::CalpontSystemCatalog::VARBINARY) &&
|
||||
(rg.getColTypes()[col] != execplan::CalpontSystemCatalog::BLOB)) {
|
||||
(rg.getColTypes()[col] != execplan::CalpontSystemCatalog::BLOB) &&
|
||||
(rg.getColTypes()[col] != execplan::CalpontSystemCatalog::TEXT)) {
|
||||
for (i = curResultCounter; i < tmpResultCounter; i++) {
|
||||
rg.getRow(newRidList[i].pos, &r);
|
||||
//cout << "serializing " << tmpStrings[i] << endl;
|
||||
|
||||
Reference in New Issue
Block a user