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
MCOL-4422 Remove mariadb.h and my_sys.h dependency from collation.h
This commit is contained in:
@ -97,7 +97,7 @@ std::string Func_substr::getStrVal(rowgroup::Row& row,
|
||||
if (start == 0 && strLen == length)
|
||||
return str;
|
||||
|
||||
length= MY_MIN(length, strLen - start);
|
||||
length= std::min(length, strLen - start);
|
||||
|
||||
std::string ret(strptr + start, length);
|
||||
return ret;
|
||||
|
Reference in New Issue
Block a user