1
0
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:
Andrew Hutchings
2018-11-14 14:29:58 +00:00
parent 91a24e410f
commit b1d5f54abe

View File

@ -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)