You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
chore(MCOL-6018) Fix incorrect Field_decimal cast
This is a fix of a problem found by UBSAN. MDB changed default type to represent a decimal result, C-style cast did not do proper type checking and this one-liner fixes that. Now we will have an assertion if type changes again.
This commit is contained in:
committed by
Leonid Fedorov
parent
251749297b
commit
3a91cded27
@ -3213,7 +3213,10 @@ CalpontSystemCatalog::ColType fieldType_MysqlToIDB(const Field* field)
|
|||||||
|
|
||||||
case DECIMAL_RESULT:
|
case DECIMAL_RESULT:
|
||||||
{
|
{
|
||||||
Field_decimal* idp = (Field_decimal*)field;
|
const Field_new_decimal* idp = dynamic_cast<const Field_new_decimal*>(field);
|
||||||
|
|
||||||
|
idbassert(idp);
|
||||||
|
|
||||||
ct.colDataType = CalpontSystemCatalog::DECIMAL;
|
ct.colDataType = CalpontSystemCatalog::DECIMAL;
|
||||||
ct.colWidth = 8;
|
ct.colWidth = 8;
|
||||||
ct.scale = idp->dec;
|
ct.scale = idp->dec;
|
||||||
|
Reference in New Issue
Block a user