fix thread tg_id max limit

This commit is contained in:
obdev 2023-09-14 06:44:20 +00:00 committed by ob-robot
parent 0de9f01399
commit 089dbe19be

View File

@ -1046,7 +1046,7 @@ public:
}
void destroy_tg(int tg_id, bool is_exist = false);
private:
static constexpr int MAX_ID = 12288;
static constexpr int MAX_ID = 122880;
common::ObLatchMutex lock_;
ABitSet bs_;
char bs_buf_[ABitSet::buf_len(MAX_ID)];