diff options
author | sasha@mysql.sashanet.com <> | 2001-06-21 13:19:24 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-06-21 13:19:24 -0600 |
commit | 992f889878bda85985960828c2e2471eaf47004c (patch) | |
tree | e0d3ffc83959f6562326765b3d79c7915f033bbf /sql/sql_lex.h | |
parent | 172913f57b30a419eb96745b67dd637ce0bc0433 (diff) | |
download | mariadb-git-992f889878bda85985960828c2e2471eaf47004c.tar.gz |
added SHOW BINLOG EVENTS
fixed log sequence bugs
fixed bugs in handling Slave event
added test case with SHOW BINLOG EVENTS
have not fixed all the bugs - found some that are also in 3.23,
will fix them there first, then do pull and cleanup
will not push this changeset
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index be4a7d1273f..a7b7f75f4a2 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -55,7 +55,8 @@ enum enum_sql_command { SQLCOM_RESET, SQLCOM_PURGE, SQLCOM_SHOW_BINLOGS, SQLCOM_SHOW_OPEN_TABLES, SQLCOM_LOAD_MASTER_DATA, SQLCOM_HA_OPEN, SQLCOM_HA_CLOSE, SQLCOM_HA_READ, - SQLCOM_SHOW_SLAVE_HOSTS, SQLCOM_MULTI_DELETE, SQLCOM_UNION_SELECT + SQLCOM_SHOW_SLAVE_HOSTS, SQLCOM_MULTI_DELETE, SQLCOM_UNION_SELECT, + SQLCOM_SHOW_BINLOG_EVENTS }; enum lex_states { STATE_START, STATE_CHAR, STATE_IDENT, |