1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

MCOL-5153 This increases the size of the multiplier in the guarding

check in RowAggStorage::increaseSize() so that it doesn't throw w/o a
reason
This commit is contained in:
Roman Nozdrin
2022-07-07 08:56:20 +00:00
parent f866498d42
commit eabca67c8d
2 changed files with 6 additions and 1 deletions

View File

@@ -321,6 +321,8 @@ class RowAggStorage
{
RowPosHashStoragePtr fHashes;
std::unique_ptr<uint8_t[]> fInfo;
// This is a power of 2 that controls a potential number of hash buckets
// w/o rehashing.
size_t fSize{0};
size_t fMask{0};
size_t fMaxSize{0};