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-1868 Fix error in unused code
There was a a bad line in some code that we don't currently compile. This patch fixes that code in case we use it in the future.
This commit is contained in:
@ -93,7 +93,7 @@ string Func_concat_ws::getStrVal(Row& row,
|
||||
string tmp;
|
||||
for ( uint32_t i = 1 ; i < parm.size() ; i++)
|
||||
{
|
||||
string(stringValue(parm[i], row, isNull).c_str(), tmp);
|
||||
stringValue(parm[i], row, isNull, tmp);
|
||||
str += tmp;
|
||||
|
||||
if (isNull)
|
||||
|
Reference in New Issue
Block a user