mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
MDEV-14239 Missing space: "innodb_open_files ... greaterthan"
innobase_init(): Add a missing space to a warning message.
Apparently, this message was corrupted in MariaDB 10.2.2 in
commit fec844aca8
related to a
conflict resolution when applying a change from MySQL 5.7.12.
This commit is contained in:
parent
4ac8fa008d
commit
bc8d173b9f
1 changed files with 1 additions and 1 deletions
|
@ -4285,7 +4285,7 @@ innobase_change_buffering_inited_ok:
|
|||
if (innobase_open_files > (long) open_files_limit) {
|
||||
ib::warn() << "innodb_open_files " << innobase_open_files
|
||||
<< " should not be greater"
|
||||
<< "than the open_files_limit " << open_files_limit;
|
||||
<< " than the open_files_limit " << open_files_limit;
|
||||
if (innobase_open_files > (long) tc_size) {
|
||||
innobase_open_files = tc_size;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue