diff options
author | mats@romeo.(none) <> | 2007-03-07 12:22:10 +0100 |
---|---|---|
committer | mats@romeo.(none) <> | 2007-03-07 12:22:10 +0100 |
commit | c815ce1aeb343f4a70ffee7baa58ab5e967e69e6 (patch) | |
tree | 2f1ac6a27476e0b8763fa23990fd7149936c8f77 /sql/log_event.h | |
parent | d445d5e4ccdeeb775e8db97ed46493d65b54cc5f (diff) | |
parent | 844131937fc50c577f9147e1cf57523b43737de0 (diff) | |
download | mariadb-git-c815ce1aeb343f4a70ffee7baa58ab5e967e69e6.tar.gz |
Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl
into romeo.(none):/home/bk/b22583-mysql-5.1-new-rpl
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 7cbe8925d9a..66f8339d0cf 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -468,10 +468,23 @@ enum Log_event_type XID_EVENT= 16, BEGIN_LOAD_QUERY_EVENT= 17, EXECUTE_LOAD_QUERY_EVENT= 18, + TABLE_MAP_EVENT = 19, - WRITE_ROWS_EVENT = 20, - UPDATE_ROWS_EVENT = 21, - DELETE_ROWS_EVENT = 22, + + /* + These event numbers were used for 5.1.0 to 5.1.15 and are + therefore obsolete. + */ + PRE_GA_WRITE_ROWS_EVENT = 20, + PRE_GA_UPDATE_ROWS_EVENT = 21, + PRE_GA_DELETE_ROWS_EVENT = 22, + + /* + These event numbers are used from 5.1.16 and forward + */ + WRITE_ROWS_EVENT = 23, + UPDATE_ROWS_EVENT = 24, + DELETE_ROWS_EVENT = 25, /* Add new events here - right above this comment! |