Skip to content
Permalink
Browse files
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 fec844a related to a
conflict resolution when applying a change from MySQL 5.7.12.
  • Loading branch information
dr-m committed Apr 15, 2019
1 parent 4ac8fa0 commit bc8d173
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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;
}

0 comments on commit bc8d173

Please sign in to comment.