mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
Merge mysql.com:/users/lthalmann/bkroot/mysql-5.0
into mysql.com:/users/lthalmann/bk/mysql-5.0-enum-logtype
This commit is contained in:
commit
192bceafd9
1 changed files with 23 additions and 12 deletions
|
@ -403,27 +403,38 @@ 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, QUERY_EVENT, STOP_EVENT, ROTATE_EVENT,
|
UNKNOWN_EVENT= 0,
|
||||||
INTVAR_EVENT, LOAD_EVENT, SLAVE_EVENT, CREATE_FILE_EVENT,
|
START_EVENT_V3= 1,
|
||||||
APPEND_BLOCK_EVENT, EXEC_LOAD_EVENT, DELETE_FILE_EVENT,
|
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,
|
||||||
/*
|
/*
|
||||||
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
|
||||||
sql_ex, allowing multibyte TERMINATED BY etc; both types share the
|
sql_ex, allowing multibyte TERMINATED BY etc; both types share the
|
||||||
same class (Load_log_event)
|
same class (Load_log_event)
|
||||||
*/
|
*/
|
||||||
NEW_LOAD_EVENT,
|
NEW_LOAD_EVENT= 12,
|
||||||
RAND_EVENT, USER_VAR_EVENT,
|
RAND_EVENT= 13,
|
||||||
FORMAT_DESCRIPTION_EVENT,
|
USER_VAR_EVENT= 14,
|
||||||
XID_EVENT,
|
FORMAT_DESCRIPTION_EVENT= 15,
|
||||||
BEGIN_LOAD_QUERY_EVENT,
|
XID_EVENT= 16,
|
||||||
EXECUTE_LOAD_QUERY_EVENT,
|
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 */
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue