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
MCOL-4306 don't compare string as signed int
This commit is contained in:
@ -98,7 +98,7 @@ void ColExtInf::addOrUpdateEntry( RID lastInputRow,
|
||||
}
|
||||
else // Update the range
|
||||
{
|
||||
if (isUnsigned(colDataType))
|
||||
if (isUnsigned(colDataType) || isCharType(colDataType))
|
||||
{
|
||||
if (static_cast<uint64_t>(minVal)
|
||||
< static_cast<uint64_t>(iter->second.fMinVal))
|
||||
|
Reference in New Issue
Block a user