Loading sql/sql_yacc.yy +7 −2 Original line number Diff line number Diff line Loading @@ -8833,7 +8833,7 @@ xa: XA_SYM begin_or_start xid opt_join_or_resume { 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; } Loading Loading @@ -8893,9 +8893,14 @@ opt_one_phase: | ONE_SYM PHASE_SYM { Lex->xa_opt=XA_ONE_PHASE; } ; opt_suspend_or_migrate: opt_suspend: /* nothing */ { Lex->xa_opt=XA_NONE; } | SUSPEND_SYM { Lex->xa_opt=XA_SUSPEND; } opt_migrate ; opt_migrate: /* nothing */ { } | FOR_SYM MIGRATE_SYM { Lex->xa_opt=XA_FOR_MIGRATE; } ; Loading Loading
sql/sql_yacc.yy +7 −2 Original line number Diff line number Diff line Loading @@ -8833,7 +8833,7 @@ xa: XA_SYM begin_or_start xid opt_join_or_resume { 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; } Loading Loading @@ -8893,9 +8893,14 @@ opt_one_phase: | ONE_SYM PHASE_SYM { Lex->xa_opt=XA_ONE_PHASE; } ; opt_suspend_or_migrate: opt_suspend: /* nothing */ { Lex->xa_opt=XA_NONE; } | SUSPEND_SYM { Lex->xa_opt=XA_SUSPEND; } opt_migrate ; opt_migrate: /* nothing */ { } | FOR_SYM MIGRATE_SYM { Lex->xa_opt=XA_FOR_MIGRATE; } ; Loading