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-4394 Followup
This commit is contained in:
@ -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 (precision > datatypes::INT64MAXPRECISION &&
|
||||
|
@ -185,7 +185,7 @@ class TSInt128
|
||||
return toDouble();
|
||||
}
|
||||
|
||||
inline long double toDouble() const
|
||||
inline double toDouble() const
|
||||
{
|
||||
return static_cast<double>(s128Value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user