Commit 117d61c8 authored by serg@sergbook.mysql.com's avatar serg@sergbook.mysql.com

Merge bk-internal:/home/bk/mysql-5.0

into sergbook.mysql.com:/usr/home/serg/Abk/mysql-5.0
parents 9a3168da c234386a
...@@ -8842,7 +8842,7 @@ xa: XA_SYM begin_or_start xid opt_join_or_resume ...@@ -8842,7 +8842,7 @@ xa: XA_SYM begin_or_start xid opt_join_or_resume
{ {
Lex->sql_command = SQLCOM_XA_START; Lex->sql_command = SQLCOM_XA_START;
} }
| XA_SYM END xid opt_suspend_or_migrate | XA_SYM END xid opt_suspend
{ {
Lex->sql_command = SQLCOM_XA_END; Lex->sql_command = SQLCOM_XA_END;
} }
...@@ -8902,9 +8902,14 @@ opt_one_phase: ...@@ -8902,9 +8902,14 @@ opt_one_phase:
| ONE_SYM PHASE_SYM { Lex->xa_opt=XA_ONE_PHASE; } | ONE_SYM PHASE_SYM { Lex->xa_opt=XA_ONE_PHASE; }
; ;
opt_suspend_or_migrate: opt_suspend:
/* nothing */ { Lex->xa_opt=XA_NONE; } /* nothing */ { Lex->xa_opt=XA_NONE; }
| SUSPEND_SYM { Lex->xa_opt=XA_SUSPEND; } | SUSPEND_SYM { Lex->xa_opt=XA_SUSPEND; }
opt_migrate
;
opt_migrate:
/* nothing */ { }
| FOR_SYM MIGRATE_SYM { Lex->xa_opt=XA_FOR_MIGRATE; } | FOR_SYM MIGRATE_SYM { Lex->xa_opt=XA_FOR_MIGRATE; }
; ;
......
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