Browse Source

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.
pull/355/head
Marko Mäkelä 9 years ago
parent
commit
0d34dd7cfb
  1. 2
      storage/innobase/buf/buf0dump.cc

2
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;

Loading…
Cancel
Save