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:
Marko Mäkelä 2019-04-15 19:17:24 +03:00
parent 4ac8fa008d
commit bc8d173b9f

View file

@ -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;
}