1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Querytester (#2539)

* Build querytester adhoc on Drone

* Negative to unsigned cast is 0 on ARM
This commit is contained in:
Leonid Fedorov
2022-08-30 17:25:26 +03:00
committed by GitHub
parent 3d5f70b7d6
commit 05d3ac82d9
2 changed files with 4 additions and 4 deletions

View File

@ -64,8 +64,7 @@ int64_t Func_greatest::getIntVal(rowgroup::Row& row, FunctionParm& fp, bool& isN
greatestStr = str1;
}
uint64_t tmp = (uint64_t)greatestStr;
return (int64_t)tmp;
return (int64_t)greatestStr;
}
uint64_t Func_greatest::getUintVal(rowgroup::Row& row, FunctionParm& fp, bool& isNull,