1
0
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:
Commander thrashdin
2022-04-20 16:04:14 +03:00
parent bbb168a846
commit 4bb3743110

View File

@@ -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());
}
}