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-1822 add LONG DOUBLE support
This commit is contained in:
@ -153,6 +153,11 @@ public:
|
||||
* whatever the native byte order is.
|
||||
*/
|
||||
EXPORT ByteStream& operator<<(const double d);
|
||||
/**
|
||||
* push a long double onto the end of the stream. The byte
|
||||
* order is whatever the native byte order is.
|
||||
*/
|
||||
EXPORT ByteStream& operator<<(const long double d);
|
||||
/**
|
||||
* push a std::string onto the end of the stream.
|
||||
*/
|
||||
@ -212,6 +217,11 @@ public:
|
||||
* order is whatever the native byte order is.
|
||||
*/
|
||||
EXPORT ByteStream& operator>>(double& d);
|
||||
/**
|
||||
* extract a long double from the front of the stream. The byte
|
||||
* order is whatever the native byte order is.
|
||||
*/
|
||||
EXPORT ByteStream& operator>>(long double& d);
|
||||
/**
|
||||
* extract a std::string from the front of the stream.
|
||||
*/
|
||||
@ -277,6 +287,11 @@ public:
|
||||
* order is whatever the native byte order is.
|
||||
*/
|
||||
EXPORT void peek(double& f) const;
|
||||
/**
|
||||
* Peek at a long double from the front of the stream. The byte
|
||||
* order is whatever the native byte order is.
|
||||
*/
|
||||
EXPORT void peek(long double& f) const;
|
||||
/**
|
||||
* Peek at a std::string from the front of the stream.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user