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
Fix different signedness comparison warning
This commit is contained in:
@ -58,7 +58,7 @@ struct ExtCPInfo
|
||||
ExtCPInfo(execplan::CalpontSystemCatalog::ColDataType colType, int colWidth)
|
||||
: fColType(colType), fColWidth(colWidth)
|
||||
{
|
||||
fCPInfo.isBinaryColumn = colWidth > datatypes::MAXLEGACYWIDTH;
|
||||
fCPInfo.isBinaryColumn = (unsigned int)colWidth > datatypes::MAXLEGACYWIDTH;
|
||||
}
|
||||
void toInvalid()
|
||||
{
|
||||
|
Reference in New Issue
Block a user