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
MCOL-4180 Add some missing support for wide decimals to dbcon/execplan
classes.
This commit is contained in:
@ -127,7 +127,8 @@ bool ArithmeticOperator::operator!=(const TreeNode* t) const
|
||||
|
||||
void ArithmeticOperator::adjustResultType(const CalpontSystemCatalog::ColType& m)
|
||||
{
|
||||
if (m.colDataType != CalpontSystemCatalog::DECIMAL)
|
||||
if (m.colDataType != CalpontSystemCatalog::DECIMAL &&
|
||||
m.colDataType != CalpontSystemCatalog::UDECIMAL)
|
||||
{
|
||||
fResultType = m;
|
||||
}
|
||||
|
Reference in New Issue
Block a user