1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Merge pull request #1615 from drrtuy/MCOL-4394-3

MCOL-4394 Followup
This commit is contained in:
Roman Nozdrin
2020-11-25 20:06:58 +03:00
committed by GitHub
2 changed files with 1 additions and 7 deletions

View File

@ -590,12 +590,6 @@ class VDecimal: public TSInt128
return toDouble();
}
inline long double toLongDouble() const
{
datatypes::TFloat128 y(s128Value);
return static_cast<long double>(y);
}
bool operator==(const VDecimal& rhs) const
{
if (isTSInt128ByPrecision() && rhs.isTSInt128ByPrecision())

View File

@ -185,7 +185,7 @@ class TSInt128
return toDouble();
}
inline long double toDouble() const
inline double toDouble() const
{
return static_cast<double>(s128Value);
}