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-267 Make BLOB DDL/DML work
Currently limited to 8KB inserts.
This commit is contained in:
@ -1454,6 +1454,7 @@ int ColumnOp::addExtent(
|
||||
//pOldVal = &((double *) oldValArray)[i];
|
||||
break;
|
||||
case WriteEngine::WR_VARBINARY : // treat same as char for now
|
||||
case WriteEngine::WR_BLOB :
|
||||
case WriteEngine::WR_CHAR :
|
||||
if (!bDelete)
|
||||
{
|
||||
@ -1588,6 +1589,7 @@ int ColumnOp::addExtent(
|
||||
//pOldVal = &((double *) oldValArray)[i];
|
||||
break;
|
||||
case WriteEngine::WR_VARBINARY : // treat same as char for now
|
||||
case WriteEngine::WR_BLOB :
|
||||
case WriteEngine::WR_CHAR :
|
||||
if (!bDelete)
|
||||
{
|
||||
@ -1717,6 +1719,7 @@ int ColumnOp::addExtent(
|
||||
pVal = &((double *) valArray)[i];
|
||||
break;
|
||||
case WriteEngine::WR_VARBINARY : // treat same as char for now
|
||||
case WriteEngine::WR_BLOB :
|
||||
case WriteEngine::WR_CHAR :
|
||||
{
|
||||
memcpy(charTmpBuf, (char*)valArray+i*8, 8);
|
||||
|
Reference in New Issue
Block a user