1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

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

This commit is contained in:
unknown
2002-10-24 20:20:37 -06:00
parent eb67ad313b
commit cbb466e1b6

View File

@ -126,6 +126,7 @@ const char* Log_event::get_type_str()
case APPEND_BLOCK_EVENT: return "Append_block";
case DELETE_FILE_EVENT: return "Delete_file";
case EXEC_LOAD_EVENT: return "Exec_load";
case RAND_EVENT: return "RAND";
default: /* impossible */ return "Unknown";
}
}