You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
Added word bytes
This commit is contained in:
@@ -487,7 +487,7 @@ uint8_t WE_DDLCommandProc::writeCreateSyscolumn(ByteStream& bs, std::string& err
|
|||||||
(dataType != CalpontSystemCatalog::TEXT))
|
(dataType != CalpontSystemCatalog::TEXT))
|
||||||
{
|
{
|
||||||
ostringstream os;
|
ostringstream os;
|
||||||
os << "char, varchar and varbinary length may not exceed 8000";
|
os << "char, varchar and varbinary length may not exceed 8000 bytes";
|
||||||
throw std::runtime_error(os.str());
|
throw std::runtime_error(os.str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -872,7 +872,7 @@ uint8_t WE_DDLCommandProc::writeSyscolumn(ByteStream& bs, std::string& err)
|
|||||||
(dataType != CalpontSystemCatalog::TEXT))
|
(dataType != CalpontSystemCatalog::TEXT))
|
||||||
{
|
{
|
||||||
ostringstream os;
|
ostringstream os;
|
||||||
os << "char, varchar and varbinary length may not exceed 8000";
|
os << "char, varchar and varbinary length may not exceed 8000 bytes";
|
||||||
throw std::runtime_error(os.str());
|
throw std::runtime_error(os.str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user