Merge pull request #50620 from Avogar/increase-bitmap-max-array-sixe

Increase max array size in group bitmap
This commit is contained in:
Kruglov Pavel 2023-06-13 16:47:32 +02:00 committed by GitHub
commit 2bfb15cf81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ public:
size_t size;
readVarUInt(size, in);
static constexpr size_t max_size = 1_GiB;
static constexpr size_t max_size = 100_GiB;
if (size == 0)
throw Exception(ErrorCodes::INCORRECT_DATA, "Incorrect size (0) in groupBitmap.");