Commit bc8d173b authored by Marko Mäkelä's avatar Marko Mäkelä

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 fec844ac related to a
conflict resolution when applying a change from MySQL 5.7.12.
parent 4ac8fa00
......@@ -4285,7 +4285,7 @@ innobase_init(
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;
}
......
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