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
Querytester (#2539)
* Build querytester adhoc on Drone * Negative to unsigned cast is 0 on ARM
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user