You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-641 Changed the hint to search for GTest headers.
This commit introduces DataConvert UTs. DataConvert::decimalToString now can negative values. Next version for Row::toString(), applyMapping UT checks. Row:equals() is now wide-DECIMAL aware.
This commit is contained in:
@ -1004,6 +1004,12 @@ inline bool isNumeric(const execplan::CalpontSystemCatalog::ColDataType type)
|
||||
}
|
||||
}
|
||||
|
||||
inline bool isDecimal(const execplan::CalpontSystemCatalog::ColDataType type)
|
||||
{
|
||||
return (type == execplan::CalpontSystemCatalog::DECIMAL ||
|
||||
type == execplan::CalpontSystemCatalog::UDECIMAL);
|
||||
}
|
||||
|
||||
/** convenience function to determine if column type is an
|
||||
* unsigned type
|
||||
*/
|
||||
|
Reference in New Issue
Block a user