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
@ -590,12 +590,6 @@ class VDecimal: public TSInt128
|
|||||||
return toDouble();
|
return toDouble();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline long double toLongDouble() const
|
|
||||||
{
|
|
||||||
datatypes::TFloat128 y(s128Value);
|
|
||||||
return static_cast<long double>(y);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator==(const VDecimal& rhs) const
|
bool operator==(const VDecimal& rhs) const
|
||||||
{
|
{
|
||||||
if (isTSInt128ByPrecision() && rhs.isTSInt128ByPrecision())
|
if (isTSInt128ByPrecision() && rhs.isTSInt128ByPrecision())
|
||||||
|
@ -185,7 +185,7 @@ class TSInt128
|
|||||||
return toDouble();
|
return toDouble();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline long double toDouble() const
|
inline double toDouble() const
|
||||||
{
|
{
|
||||||
return static_cast<double>(s128Value);
|
return static_cast<double>(s128Value);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user