Commit f878f7bb authored by unknown's avatar unknown

Fixed enum numbering, patch 2


sql/log_event.h:
  One enum value per line
  Fixed a mistake
  Added values to every line for strange compilers
parent 64d5a78c
...@@ -403,9 +403,17 @@ enum Log_event_type ...@@ -403,9 +403,17 @@ enum Log_event_type
Every time you update this enum (when you add a type), you have to Every time you update this enum (when you add a type), you have to
fix Format_description_log_event::Format_description_log_event(). fix Format_description_log_event::Format_description_log_event().
*/ */
UNKNOWN_EVENT= 0, START_EVENT_V3= 1, QUERY_EVENT= 2, STOP_EVENT= 3, UNKNOWN_EVENT= 0,
ROTATE_EVENT= 4, INTVAR_EVENT= 5, LOAD_EVENT= 6, SLAVE_EVENT= 7, START_EVENT_V3= 1,
CREATE_FILE_EVENT= 8, APPEND_BLOCK_EVENT= 9, EXEC_LOAD_EVENT= 10, QUERY_EVENT= 2,
STOP_EVENT= 3,
ROTATE_EVENT= 4,
INTVAR_EVENT= 5,
LOAD_EVENT= 6,
SLAVE_EVENT= 7,
CREATE_FILE_EVENT= 8,
APPEND_BLOCK_EVENT= 9,
EXEC_LOAD_EVENT= 10,
DELETE_FILE_EVENT= 11, DELETE_FILE_EVENT= 11,
/* /*
NEW_LOAD_EVENT is like LOAD_EVENT except that it has a longer NEW_LOAD_EVENT is like LOAD_EVENT except that it has a longer
...@@ -413,18 +421,20 @@ enum Log_event_type ...@@ -413,18 +421,20 @@ enum Log_event_type
same class (Load_log_event) same class (Load_log_event)
*/ */
NEW_LOAD_EVENT= 12, NEW_LOAD_EVENT= 12,
RAND_EVENT, USER_VAR_EVENT= 13, RAND_EVENT= 13,
FORMAT_DESCRIPTION_EVENT= 14, USER_VAR_EVENT= 14,
XID_EVENT= 15, FORMAT_DESCRIPTION_EVENT= 15,
BEGIN_LOAD_QUERY_EVENT= 16, XID_EVENT= 16,
EXECUTE_LOAD_QUERY_EVENT= 17, BEGIN_LOAD_QUERY_EVENT= 17,
EXECUTE_LOAD_QUERY_EVENT= 18,
/* /*
add new events here - right above this comment! Add new events here - right above this comment!
existing events should never change their numbers And change the ENUM_END_EVENT_MARKER below.
Existing events should never change their numbers
*/ */
ENUM_END_EVENT /* end marker */ ENUM_END_EVENT= 19 /* end marker */
}; };
/* /*
......
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