1
0
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:
Sergey Zefirov
2021-05-21 15:27:55 +03:00
parent 42e710f817
commit c89ae10f6a

View File

@ -58,7 +58,7 @@ struct ExtCPInfo
ExtCPInfo(execplan::CalpontSystemCatalog::ColDataType colType, int colWidth) ExtCPInfo(execplan::CalpontSystemCatalog::ColDataType colType, int colWidth)
: fColType(colType), fColWidth(colWidth) : fColType(colType), fColWidth(colWidth)
{ {
fCPInfo.isBinaryColumn = colWidth > datatypes::MAXLEGACYWIDTH; fCPInfo.isBinaryColumn = (unsigned int)colWidth > datatypes::MAXLEGACYWIDTH;
} }
void toInvalid() void toInvalid()
{ {