diff options
author | unknown <ramil@mysql.com> | 2005-12-26 17:22:12 +0400 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-12-26 17:22:12 +0400 |
commit | 5b35c715539f0fadc8148a9934211aed32e54314 (patch) | |
tree | c172f8057b2b6d94f5e0a8f474c52a156d0b5ff0 /sql/sql_yacc.yy | |
parent | 059aaa8ec830b66f0c461361870d6e543c0c4303 (diff) | |
download | mariadb-git-5b35c715539f0fadc8148a9934211aed32e54314.tar.gz |
Fix for SQLCOM_BINLOG_BASE64_EVENT related code.
sql/sql_yacc.yy:
Fix for SQLCOM_BINLOG_BASE64_EVENT related code.
- added missing ';'
- added binlog_base64_event
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 561cf22e709..7ebe851fc85 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -853,7 +853,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize); definer view_replace_or_algorithm view_replace view_algorithm_opt view_algorithm view_or_trigger_tail view_suid view_tail view_list_opt view_list view_select view_check_option trigger_tail - install uninstall partition_entry + install uninstall partition_entry binlog_base64_event END_OF_INPUT %type <NONE> call sp_proc_stmts sp_proc_stmts1 sp_proc_stmt @@ -4407,6 +4407,7 @@ binlog_base64_event: Lex->sql_command = SQLCOM_BINLOG_BASE64_EVENT; Lex->comment= $2; } + ; check: CHECK_SYM table_or_tables |