1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

MCOL-3536 collation

This commit is contained in:
David Hall
2020-05-19 16:22:44 -05:00
parent 8479a87e46
commit 11ba12f6ea
10 changed files with 53 additions and 126 deletions

View File

@@ -54,7 +54,6 @@ string Func_concat_ws::getStrVal(Row& row,
if (isNull)
return "";
#ifdef STRCOLL_ENH__
wstring wstr;
size_t strwclen = utf8::idb_mbstowcs(0, delim.c_str(), 0) + 1;
wchar_t* wcbuf = new wchar_t[strwclen];
@@ -96,7 +95,7 @@ string Func_concat_ws::getStrVal(Row& row,
delete [] wcbuf;
return ret;
#else
#if 0
string str;
string tmp;
for ( uint32_t i = 1 ; i < parm.size() ; i++)