summaryrefslogtreecommitdiff
path: root/storage/innobase
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-04-15 19:17:24 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2019-04-15 19:17:24 +0300
commitbc8d173b9f9a629d6301f5e8eb011155b041de4a (patch)
tree3fc59cf7e67b924965c092a25c8858b45a76f06b /storage/innobase
parent4ac8fa008dc55879060be7c4653b2e634f0162be (diff)
downloadmariadb-git-bc8d173b9f9a629d6301f5e8eb011155b041de4a.tar.gz
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 fec844aca88e1c6b9c36bb0b811e92d9d023ffb9 related to a conflict resolution when applying a change from MySQL 5.7.12.
Diffstat (limited to 'storage/innobase')
-rw-r--r--storage/innobase/handler/ha_innodb.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc
index 8a97aeed0ba..d9ee942324a 100644
--- a/storage/innobase/handler/ha_innodb.cc
+++ b/storage/innobase/handler/ha_innodb.cc
@@ -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;
}