1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-04 04:42:30 +03:00

MCOL-641 Fixed group_concat for narrow-DECIMALs.

This commit is contained in:
Roman Nozdrin
2020-05-18 11:02:27 +00:00
parent f63611c422
commit a7fcf39f2a
3 changed files with 29 additions and 12 deletions

View File

@ -1911,7 +1911,8 @@ string Func_format::getStrVal(Row& row,
char buf[80];
dataconvert::DataConvert::decimalToString( decimal.value, decimal.scale, buf, 80, parm[0]->data()->resultType().colDataType);
dataconvert::DataConvert::decimalToString( decimal.value,
decimal.scale, buf, 80, parm[0]->data()->resultType().colDataType);
value = buf;
}