Commit b9007ca6 authored by nick@mysql.com's avatar nick@mysql.com

Added missing case for Rand_log_event to Log_event::get_type_str()

parent 26b8fc98
...@@ -126,6 +126,7 @@ const char* Log_event::get_type_str() ...@@ -126,6 +126,7 @@ const char* Log_event::get_type_str()
case APPEND_BLOCK_EVENT: return "Append_block"; case APPEND_BLOCK_EVENT: return "Append_block";
case DELETE_FILE_EVENT: return "Delete_file"; case DELETE_FILE_EVENT: return "Delete_file";
case EXEC_LOAD_EVENT: return "Exec_load"; case EXEC_LOAD_EVENT: return "Exec_load";
case RAND_EVENT: return "RAND";
default: /* impossible */ return "Unknown"; default: /* impossible */ return "Unknown";
} }
} }
......
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