You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +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:
@ -1455,6 +1455,7 @@ int ColumnOp::addExtent(
|
||||
break;
|
||||
case WriteEngine::WR_VARBINARY : // treat same as char for now
|
||||
case WriteEngine::WR_BLOB :
|
||||
case WriteEngine::WR_TEXT :
|
||||
case WriteEngine::WR_CHAR :
|
||||
if (!bDelete)
|
||||
{
|
||||
@ -1590,6 +1591,7 @@ int ColumnOp::addExtent(
|
||||
break;
|
||||
case WriteEngine::WR_VARBINARY : // treat same as char for now
|
||||
case WriteEngine::WR_BLOB :
|
||||
case WriteEngine::WR_TEXT :
|
||||
case WriteEngine::WR_CHAR :
|
||||
if (!bDelete)
|
||||
{
|
||||
@ -1720,6 +1722,7 @@ int ColumnOp::addExtent(
|
||||
break;
|
||||
case WriteEngine::WR_VARBINARY : // treat same as char for now
|
||||
case WriteEngine::WR_BLOB :
|
||||
case WriteEngine::WR_TEXT :
|
||||
case WriteEngine::WR_CHAR :
|
||||
{
|
||||
memcpy(charTmpBuf, (char*)valArray+i*8, 8);
|
||||
|
Reference in New Issue
Block a user