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
feat(): propagate long strings SP type change
This commit is contained in:
@ -179,17 +179,17 @@ void ByteStream::growBuf(BSSizeType toSize)
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<std::shared_ptr<uint8_t[]>>& ByteStream::getLongStrings()
|
||||
std::vector<rowgroup::StringStoreBufSPType>& ByteStream::getLongStrings()
|
||||
{
|
||||
return longStrings;
|
||||
}
|
||||
|
||||
const std::vector<std::shared_ptr<uint8_t[]>>& ByteStream::getLongStrings() const
|
||||
const std::vector<rowgroup::StringStoreBufSPType>& ByteStream::getLongStrings() const
|
||||
{
|
||||
return longStrings;
|
||||
}
|
||||
|
||||
void ByteStream::setLongStrings(const std::vector<std::shared_ptr<uint8_t[]>>& other)
|
||||
void ByteStream::setLongStrings(const std::vector<rowgroup::StringStoreBufSPType>& other)
|
||||
{
|
||||
longStrings = other;
|
||||
}
|
||||
|
Reference in New Issue
Block a user