You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-4173 This patch adds support for wide-DECIMAL INNER, OUTER, SEMI, functional JOINs
based on top of TypelessData
This commit is contained in:
@ -113,6 +113,7 @@ public:
|
||||
* push a uint8_t onto the end of the stream
|
||||
*/
|
||||
EXPORT ByteStream& operator<<(const uint8_t b);
|
||||
EXPORT ByteStream& operator<<(const bool b);
|
||||
/**
|
||||
* push a int16_t onto the end of the stream. The byte order is whatever the native byte order is.
|
||||
*/
|
||||
@ -195,6 +196,7 @@ public:
|
||||
* extract a uint8_t from the front of the stream.
|
||||
*/
|
||||
EXPORT ByteStream& operator>>(uint8_t& b);
|
||||
EXPORT ByteStream& operator>>(bool& b);
|
||||
/**
|
||||
* extract a int16_t from the front of the stream. The byte order is whatever the native byte order is.
|
||||
*/
|
||||
@ -273,6 +275,7 @@ public:
|
||||
* Peek at a uint8_t from the front of the stream.
|
||||
*/
|
||||
EXPORT void peek(uint8_t& b) const;
|
||||
EXPORT void peek(bool& b) const;
|
||||
/**
|
||||
* Peek at a int16_t from the front of the stream. The byte order is whatever the native byte order is.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user