You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-267 Make BLOB DDL/DML work
Currently limited to 8KB inserts.
This commit is contained in:
@ -450,7 +450,8 @@ uint8_t WE_DDLCommandProc::writeCreateSyscolumn(ByteStream& bs, std::string &err
|
||||
bool hasDict = false;
|
||||
if ( (dataType == CalpontSystemCatalog::CHAR && colDefPtr->fType->fLength > 8) ||
|
||||
(dataType == CalpontSystemCatalog::VARCHAR && colDefPtr->fType->fLength > 7) ||
|
||||
(dataType == CalpontSystemCatalog::VARBINARY && colDefPtr->fType->fLength > 7) )
|
||||
(dataType == CalpontSystemCatalog::VARBINARY && colDefPtr->fType->fLength > 7) ||
|
||||
(dataType == CalpontSystemCatalog::BLOB && colDefPtr->fType->fLength > 7) )
|
||||
{
|
||||
hasDict = true;
|
||||
dictOID.compressionType = colDefPtr->fType->fCompressiontype;
|
||||
@ -459,17 +460,20 @@ uint8_t WE_DDLCommandProc::writeCreateSyscolumn(ByteStream& bs, std::string &err
|
||||
dictcol++;
|
||||
|
||||
//@Bug 2534. Take away the limit of 255 and set the limit to 8000.
|
||||
if (colDefPtr->fType->fLength > 8000)
|
||||
if ((colDefPtr->fType->fLength > 8000) &&
|
||||
(dataType != CalpontSystemCatalog::BLOB))
|
||||
{
|
||||
ostringstream os;
|
||||
os << "char, varchar and varbinary length may not exceed 8000";
|
||||
throw std::runtime_error(os.str());
|
||||
}
|
||||
}
|
||||
else if (dataType == CalpontSystemCatalog::VARBINARY && colDefPtr->fType->fLength <= 7)
|
||||
else if ((dataType == CalpontSystemCatalog::VARBINARY
|
||||
|| dataType == CalpontSystemCatalog::BLOB)
|
||||
&& colDefPtr->fType->fLength <= 7)
|
||||
{
|
||||
ostringstream os;
|
||||
os << "varbinary length may not be less than 8";
|
||||
os << "varbinary and blob length may not be less than 8";
|
||||
throw std::runtime_error(os.str());
|
||||
}
|
||||
|
||||
@ -514,7 +518,8 @@ uint8_t WE_DDLCommandProc::writeCreateSyscolumn(ByteStream& bs, std::string &err
|
||||
//@Bug 2089 Disallow zero length char and varch column to be created
|
||||
if (dataType == CalpontSystemCatalog::CHAR ||
|
||||
dataType == CalpontSystemCatalog::VARCHAR ||
|
||||
dataType == CalpontSystemCatalog::VARBINARY)
|
||||
dataType == CalpontSystemCatalog::VARBINARY ||
|
||||
dataType == CalpontSystemCatalog::BLOB)
|
||||
{
|
||||
if (colDefPtr->fType->fLength <= 0)
|
||||
{
|
||||
@ -829,17 +834,20 @@ uint8_t WE_DDLCommandProc::writeSyscolumn(ByteStream& bs, std::string & err)
|
||||
dictOID.dictOID = dictoid;
|
||||
|
||||
//@Bug 2534. Take away the limit of 255 and set the limit to 8000.
|
||||
if (colDefPtr->fType->fLength > 8000)
|
||||
if ((colDefPtr->fType->fLength > 8000) &&
|
||||
(dataType != CalpontSystemCatalog::BLOB))
|
||||
{
|
||||
ostringstream os;
|
||||
os << "char, varchar and varbinary length may not exceed 8000";
|
||||
throw std::runtime_error(os.str());
|
||||
}
|
||||
}
|
||||
else if (dataType == CalpontSystemCatalog::VARBINARY && colDefPtr->fType->fLength <= 7)
|
||||
else if ((dataType == CalpontSystemCatalog::VARBINARY
|
||||
|| dataType == CalpontSystemCatalog::BLOB)
|
||||
&& colDefPtr->fType->fLength <= 7)
|
||||
{
|
||||
ostringstream os;
|
||||
os << "varbinary length may not be less than 8";
|
||||
os << "varbinary and blob length may not be less than 8";
|
||||
throw std::runtime_error(os.str());
|
||||
}
|
||||
|
||||
@ -885,7 +893,8 @@ uint8_t WE_DDLCommandProc::writeSyscolumn(ByteStream& bs, std::string & err)
|
||||
//@Bug 2089 Disallow zero length char and varch column to be created
|
||||
if (dataType == CalpontSystemCatalog::CHAR ||
|
||||
dataType == CalpontSystemCatalog::VARCHAR ||
|
||||
dataType == CalpontSystemCatalog::VARBINARY)
|
||||
dataType == CalpontSystemCatalog::VARBINARY ||
|
||||
dataType == CalpontSystemCatalog::BLOB)
|
||||
{
|
||||
if (colDefPtr->fType->fLength <= 0)
|
||||
{
|
||||
@ -2242,6 +2251,8 @@ uint8_t WE_DDLCommandProc::updateSyscolumnTablename(ByteStream& bs, std::string
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::VARBINARY
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::BLOB
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::DECIMAL
|
||||
&& column.colType.precision > 18)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::UDECIMAL
|
||||
@ -2998,6 +3009,8 @@ uint8_t WE_DDLCommandProc::updateSystablesTablename(ByteStream& bs, std::string
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::VARBINARY
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::BLOB
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::DECIMAL
|
||||
&& column.colType.precision > 18)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::UDECIMAL
|
||||
@ -3878,6 +3891,8 @@ uint8_t WE_DDLCommandProc::updateSyscolumnSetDefault(messageqcpp::ByteStream& bs
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::VARBINARY
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::BLOB
|
||||
&& column.colType.colWidth > 7)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::DECIMAL
|
||||
&& column.colType.precision > 18)
|
||||
|| (column.colType.colDataType == CalpontSystemCatalog::UDECIMAL
|
||||
@ -4146,6 +4161,8 @@ uint8_t WE_DDLCommandProc::updateSyscolumnRenameColumn(messageqcpp::ByteStream&
|
||||
&& column1.colType.colWidth > 7)
|
||||
|| (column1.colType.colDataType == CalpontSystemCatalog::VARBINARY
|
||||
&& column1.colType.colWidth > 7)
|
||||
|| (column1.colType.colDataType == CalpontSystemCatalog::BLOB
|
||||
&& column1.colType.colWidth > 7)
|
||||
|| (column1.colType.colDataType == CalpontSystemCatalog::DECIMAL
|
||||
&& column1.colType.precision > 18)
|
||||
|| (column1.colType.colDataType == CalpontSystemCatalog::UDECIMAL
|
||||
@ -4336,6 +4353,8 @@ uint8_t WE_DDLCommandProc::updateSyscolumnRenameColumn(messageqcpp::ByteStream&
|
||||
&& column5.colType.colWidth > 7)
|
||||
|| (column5.colType.colDataType == CalpontSystemCatalog::VARBINARY
|
||||
&& column5.colType.colWidth > 7)
|
||||
|| (column5.colType.colDataType == CalpontSystemCatalog::BLOB
|
||||
&& column5.colType.colWidth > 7)
|
||||
|| (column5.colType.colDataType == CalpontSystemCatalog::DECIMAL
|
||||
&& column5.colType.precision > 18)
|
||||
|| (column5.colType.colDataType == CalpontSystemCatalog::UDECIMAL
|
||||
|
@ -316,6 +316,7 @@ inline boost::any getNullValueForType(const execplan::CalpontSystemCatalog::ColT
|
||||
|
||||
}
|
||||
break;
|
||||
case execplan::CalpontSystemCatalog::BLOB:
|
||||
case execplan::CalpontSystemCatalog::VARBINARY:
|
||||
{
|
||||
std::string charnull;
|
||||
|
@ -2071,6 +2071,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
break;
|
||||
}
|
||||
case CalpontSystemCatalog::VARBINARY:
|
||||
case CalpontSystemCatalog::BLOB:
|
||||
{
|
||||
value = row.getVarBinaryStringField(fetchColPos);
|
||||
break;
|
||||
@ -2356,6 +2357,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
break;
|
||||
}
|
||||
case CalpontSystemCatalog::VARBINARY:
|
||||
case CalpontSystemCatalog::BLOB:
|
||||
{
|
||||
value = row.getVarBinaryStringField(fetchColPos);
|
||||
break;
|
||||
|
@ -110,7 +110,8 @@ class WE_DMLCommandProc
|
||||
|| ((colType.colDataType == execplan::CalpontSystemCatalog::VARCHAR) && (colType.colWidth > 7))
|
||||
|| ((colType.colDataType == execplan::CalpontSystemCatalog::DECIMAL) && (colType.precision > 18))
|
||||
|| ((colType.colDataType == execplan::CalpontSystemCatalog::UDECIMAL) && (colType.precision > 18))
|
||||
|| (colType.colDataType == execplan::CalpontSystemCatalog::VARBINARY))
|
||||
|| (colType.colDataType == execplan::CalpontSystemCatalog::VARBINARY)
|
||||
|| (colType.colDataType == execplan::CalpontSystemCatalog::BLOB))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user