You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
Merge fixes.
This commit is contained in:
@@ -155,12 +155,12 @@ string Func_char::getStrVal(Row& row,
|
||||
|
||||
if (tmpval > static_cast<int128_t>(INT64_MAX))
|
||||
tmpval = INT64_MAX;
|
||||
|
||||
if ( !getChar((int64_t)tmpval, buf) )
|
||||
// WIP MCOL-641
|
||||
/*if ( !getChar((int64_t)tmpval, buf) )
|
||||
{
|
||||
isNull = true;
|
||||
return "";
|
||||
}
|
||||
}*/
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -172,11 +172,12 @@ string Func_char::getStrVal(Row& row,
|
||||
if ( lefto > 4 )
|
||||
value++;
|
||||
|
||||
if ( !getChar((int64_t)value, buf) )
|
||||
// WIP MCOL-641
|
||||
/*if ( !getChar((int64_t)value, buf) )
|
||||
{
|
||||
isNull = true;
|
||||
return "";
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user