Commit 6bfaa68c authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-26882 InnoDB number of trx pools note improvement

parent 71d4ecf1
/***************************************************************************** /*****************************************************************************
Copyright (c) 2013, 2014, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 2013, 2014, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2018, 2020, MariaDB Corporation. Copyright (c) 2018, 2021, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software the terms of the GNU General Public License as published by the Free Software
...@@ -300,12 +300,9 @@ struct PoolManager { ...@@ -300,12 +300,9 @@ struct PoolManager {
pool = UT_NEW_NOKEY(PoolType(m_size)); pool = UT_NEW_NOKEY(PoolType(m_size));
if (pool != NULL) { if (pool != NULL) {
ut_ad(n_pools <= m_pools.size());
m_pools.push_back(pool); m_pools.push_back(pool);
ib::info() << "Number of pools: " ib::info() << "Number of transaction pools: "
<< m_pools.size(); << m_pools.size();
added = true; added = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment