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-4174 Review/refactor frontend/connector code
This commit is contained in:
committed by
Roman Nozdrin
parent
68244ab957
commit
129d5b5a0f
@ -58,7 +58,7 @@ void PseudoCC::resetCommand(messageqcpp::ByteStream& bs)
|
||||
{
|
||||
if (function == PSEUDO_EXTENTMAX || function == PSEUDO_EXTENTMIN)
|
||||
{
|
||||
if (!datatypes::Decimal::isWideDecimalType(colType))
|
||||
if (!colType.isWideDecimalType())
|
||||
bs >> valueFromUM;
|
||||
else
|
||||
bs >> bigValueFromUM;
|
||||
@ -67,7 +67,7 @@ void PseudoCC::resetCommand(messageqcpp::ByteStream& bs)
|
||||
{
|
||||
bs >> valueFromUM;
|
||||
|
||||
if (datatypes::Decimal::isWideDecimalType(colType))
|
||||
if (colType.isWideDecimalType())
|
||||
bigValueFromUM = valueFromUM;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user