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
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))
|
||||
{
|
||||
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());
|
||||
}
|
||||
}
|
||||
@ -872,7 +872,7 @@ uint8_t WE_DDLCommandProc::writeSyscolumn(ByteStream& bs, std::string& err)
|
||||
(dataType != CalpontSystemCatalog::TEXT))
|
||||
{
|
||||
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());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user