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-267 Make BLOB DDL/DML work
Currently limited to 8KB inserts.
This commit is contained in:
@ -169,7 +169,8 @@ pColStep::pColStep(
|
||||
}
|
||||
|
||||
//If this is a dictionary column, fudge the numbers...
|
||||
if (fColType.colDataType == CalpontSystemCatalog::VARBINARY)
|
||||
if ((fColType.colDataType == CalpontSystemCatalog::VARBINARY)
|
||||
|| (fColType.colDataType == CalpontSystemCatalog::BLOB))
|
||||
{
|
||||
fColType.colWidth = 8;
|
||||
fIsDict = true;
|
||||
|
Reference in New Issue
Block a user