diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2017-04-04 12:19:42 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2017-04-05 10:16:11 +0300 |
commit | 0d34dd7cfb700b91f11c59d189d70142ed652615 (patch) | |
tree | d6dee26a637b2f127e381574a84155e0b99f8053 /storage | |
parent | ebce682557c34fc6cf0837afe66ede25b1f849b8 (diff) | |
download | mariadb-git-0d34dd7cfb700b91f11c59d189d70142ed652615.tar.gz |
MDEV-11840 InnoDB: "Cannot open <ib_buffer_pool file>" should not be an error
buf_load(): When the file cannot be opened for reading, issue a note,
not an error message.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innobase/buf/buf0dump.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/buf/buf0dump.cc b/storage/innobase/buf/buf0dump.cc index f7883ded070..9b86b1c16da 100644 --- a/storage/innobase/buf/buf0dump.cc +++ b/storage/innobase/buf/buf0dump.cc @@ -540,7 +540,7 @@ buf_load() f = fopen(full_filename, "r"); if (f == NULL) { - buf_load_status(STATUS_ERR, + buf_load_status(STATUS_INFO, "Cannot open '%s' for reading: %s", full_filename, strerror(errno)); return; |