Commit 0d34dd7c authored by Marko Mäkelä's avatar Marko Mäkelä

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.
parent ebce6825
......@@ -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;
......
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