1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-24 14:20:59 +03:00

Merge pull request #1937 from mariadb-SergeyZefirov/sz-fix-warning

Fix different signedness comparison warning
This commit is contained in:
Roman Nozdrin
2021-05-26 20:42:20 +03:00
committed by GitHub

View File

@@ -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()
{