Commit 4ccb32c0 authored by Davi Arnaut's avatar Davi Arnaut

Bug#58953: 5.5 does not build with -DWITHOUT_PERFSCHEMA_STORAGE_ENGINE=1

The MYSQL_LOG::open member function does not take a PSI
key file argument when the PSI interface is not present.
parent 5eab43b4
......@@ -2981,7 +2981,10 @@ bool MYSQL_BIN_LOG::open(const char *log_name,
write_error= 0;
/* open the main log file */
if (MYSQL_LOG::open(key_file_binlog,
if (MYSQL_LOG::open(
#ifdef HAVE_PSI_INTERFACE
key_file_binlog,
#endif
log_name, log_type_arg, new_name, io_cache_type_arg))
{
#ifdef HAVE_REPLICATION
......
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