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

This commit is contained in:
nick@mysql.com 2002-10-24 20:20:37 -06:00
parent 26b8fc98d9
commit b9007ca6a1

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";
}
}