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

MCOL-174 Handle quoted numerics

This commit is contained in:
David Hall
2019-07-31 13:58:50 -05:00
parent 106250cbf0
commit 765d1d38d4
2 changed files with 1 additions and 5 deletions

View File

@ -2899,7 +2899,7 @@ ReturnedColumn* buildReturnedColumn(Item* item, gp_walk_info& gwi, bool& nonSupp
String val, *str = item->val_str(&val); String val, *str = item->val_str(&val);
string valStr; string valStr;
valStr.assign(str->ptr(), str->length()); valStr.assign(str->ptr(), str->length());
rc = new ConstantColumn(valStr); rc = new ConstantColumn(valStr, ConstantColumn::NUM);
break; break;
} }

View File

@ -93,10 +93,6 @@ bool getUIntValFromParm(
{ {
isNull = true; isNull = true;
} }
else
{
value = 0;
}
} }
break; break;