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
Forgot another small thing. I'm a dummy.
This commit is contained in:
@ -381,6 +381,11 @@ public:
|
||||
*/
|
||||
inline void rewind();
|
||||
|
||||
/**
|
||||
* Get the allocated size of the buffer.
|
||||
*/
|
||||
inline uint32_t getBufferSize() const;
|
||||
|
||||
/**
|
||||
* Serializeable interface
|
||||
*/
|
||||
@ -390,7 +395,7 @@ public:
|
||||
* Serializeable interface
|
||||
*/
|
||||
EXPORT void deserialize(ByteStream& bs);
|
||||
|
||||
|
||||
/**
|
||||
* memory allocation chunk size
|
||||
*/
|
||||
@ -529,6 +534,11 @@ inline ByteStream& ByteStream::operator=(const SBS& rhs)
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline uint32_t ByteStream::getBufferSize() const
|
||||
{
|
||||
return fMaxLen;
|
||||
}
|
||||
|
||||
/**
|
||||
* stream a ByteStream out to any ostream
|
||||
*/
|
||||
|
Reference in New Issue
Block a user